If the current directory has a subdirectory similar to the following:
cd20220123_EEE
to move.
In this case, tab completion does not work well (you must enter 20220123_E).
20220120_AAA
20220121_BBB
20220122_CCC
20220123_DDD
20220123_EEE
20220125_FFF
I wish I could go to a directory that contains EEE
Is there a good way?Or do I have to change the directory naming convention?
$cd*EEE_
(_
indicates where the cursor should exist, not the actual input.)
If you enter ESC
*
(or Ctrl+[
**), the *EEE
part just before the cursor will be expanded into a global web.
$cd20220123_EEE
It will be rewritten to .This is insert-complets.
The Tab completion of bash usually complements up to the confirmable string, so if you have more than one candidate, the Tab key will list the remaining candidates.
While checking the list, enter the following characters and press the Tab key to continue complementing to a certain extent.
610 GDB gets version error when attempting to debug with the Presense SDK (IDE)
578 Understanding How to Configure Google API Key
911 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
© 2024 OneMinuteCode. All rights reserved.