fd
Search the current directory for all directories whose names contain the letter ’t'
$ fd -d 1 -t d '.*t.*'
DataLab
PythonLab
RustLab
-d 1means the max depth is 1, which is equivalent to the current directory.-t dmeans to only include entries of directory type.
Search against file full path
$ fd -p -i '.*pythonlab.*\.py$'
PythonLab/Scripts/lab.py
Search by file size
$ fd -l -S +800K '.*\.py$'
-rw-rw-r-- 2 chsu chsu 841K Nov 6 2025 ./AILab/Env/lib/python3.14/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema.py
-rw-rw-r-- 2 chsu chsu 841K Jul 7 00:15 ./DuckDBLab/env/lib/python3.14/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema.py
-S +/-<size>can specify a file size greater or smaller than<size>.-lshows detailed information about the matching files.
Jupyter Lab
Start Jupyter Lab, listening on port 9523 and allowing traffic from all networks.
jupyter lab --ip=0.0.0.0 --port=9523
Vifm
Basic file operations
cwto rename (change word) the filecWto rename the base name of the fileddto delete/cut the filetto toggle selection of the file:filter <regex>to filter out/hide files from the file list:filter! <regex>to keep the files according to the regex
Hide/show hidden files
zato toggle hiding/showing hidden files
Preview files
wto toggle preview of the current file
Use marks as follows
mto mark/label the position'to go to the marked position
Split/hide windows as follows
:onlyto only show the active window panevsto vertically split the windowspto horizontally split the window