Are you tired of running multiple cd commands and ls commands while searching files and directories on your system? cdir is a cool and easy-to-use command-line utility that provides a pleasant way to navigate the bash shell and search for files. It is written in Python and uses the curses module.
Let’s briefly have an overview of some of the features it provides:
Functionalities of cdir Command
- Supports the use of arrow keys when navigating between directories and searching for files.
- Searches files by simply typing the name of the file within a directory.
- Supports Bash Shell, Windows Powershell & Command Prompt.
Here is the live preview of cdir command in action.
Installation of CDIR on Linux
To install CDIR use pip, which is Python’s package manager as shown. For this case, I’m using pip3 since it’s installed by default alongside Python3.
$ pip3 install cdir --user
Once installed, append an alias to the .bashrc file as shown:
$ echo "alias cdir='source cdir.sh'" >> ~/.bashrc
And finally, reload the .bashrc file.
$ source ~/.bashrc
To start searching files, run the cdir command:
$ cdir
This will display a list of folders in your current working directory and hidden files.
To search files, use the arrow up and down keys to navigate between directories. In the example below, all files under the Downloads folder have been displayed.
To quit using cdir tool, simply press the F11
key on your keyboard. And that’s just about it. Give it a test run and let us know how it went.
Hi All,
I am a newbie to Linux. I tried the above in CentOS 8 but getting an error:
I searched for cdir.sh using locate and found below.
Any suggestion would be very much helpful.
Hey Akshay, Have you followed all the installation steps to the latter ? Also, At what point do you get the error?
Hi Jamie,
All steps followed.
Getting this error when I enter cdir command.
It looks like you did your “pip3” as root (superuser) so you will only be able to run cdir as root. That’s probably not what you want. Make sure you’re not root and try the instructions again.
Neither
F1
norF11
exits cdir in Mint 19.3. Resize the window and the folder column disappears. This is a very good idea which is very nearly a winner for me, but it is still too flaky. You also forgot to remind us to log in again before trying it out.Free copy-editing:
“To search files, use the arrow up and down keys to navigate between directories. In the example below, all files under the Downloads folder have been displaced.”
should be:
To search files, use the arrow up and down keys to navigate between directories. In the example below, all files under the Downloads folder have been displayed.
@Pat,
Thanks, corrected in the article…:)
I have asked the same question in Unix and Linux group also –
https://unix.stackexchange.com/questions/591643/how-to-use-cdir-in-multiple-tmux-panes
Hi, I have a question regarding cdir.
I use cdir python package to navigate between folders and it works very fine.
But I have an issue in using it with tmux.
I am explaining the situation below:
I have started a tmux session in which in window 1, I have created 2 panes.
In pane 1, if I type cdir it works fine.
But after then if I navigate to pane 2 and then type cdir it comes as
cdir: no_disc
What is this error and how to overcome this?
On Ubuntu 20.04, it’s the
F1
key to exit to the directory you select, notF11
.