This article is Part 1 in a series of cheat-sheets on the command line shell, bash. (Previous Page | Next Page)
Use these commands to dig up more info on command commandname:
$ which -a commandname
$ whereis commandname
$ type commandname
$ type commandname -a
You can also run either -h
or –help
on most commands, for a list of available flags.
View a history of commands entered in the shell:
$ history
The man
utility is key to finding documentation within your Linux system. Most of these cheat sheets you are reading now, were simply distilled from man pages that are probably already on your machine.
Search for commands matching keyword:
$ man -k keyword
View man pages for command commandname:
$ man commandname
View man pages for command commandname in sec. 7:
$ man 7 commandname
E / Y
(Forward/Backward one line)D / U
(Forward/Backward half window)Space / B
(Forward/Backward one window)H
(Display help file)Q
(Exit)Open new bash shell as a child of current one:
$ bash
Exit current bash shell:
$ exit
Show shells by current user:
$ ps --forest
Show list of installed shells:
$ cat /etc/shell
Opens new shell for user username as child of current shell:
$ su username
Open new remote shell for user username@host as child of current shell (see SSH for more info):
$ ssh username@host
You can use who am i
to see who you are logged in as. You can bring up more identity info with the commands id
and who -uH
.
Echo your shell's present working directory (pwd):
$ pwd
Show file tree for the directory path:
$ tree path/
Shows source target of link:
$ readlink -f /path/to/link
$ ls
Outputs a list of contents of the pwd. Some options include:
-F
(With folders identified)-A
(With hidden dotfiles)-l
(Long listing format)-lh
(Human-readable long listing format)-t
(Sort by modification time, newest first)-C
(List by columns)-X
(Sort alphabetically, by extension)-R
(Recursive into subdirectories)-i
(Show inode number)To show the contents of the directory foldername, in a human-readable long listing format with folders and hidden dotfiles identified, you would use:
$ ls -lhAF foldername/
Move your shell to a new working directory:
$ cd path/to/new/directory/
Move your shell up one level to the parent directory of your pwd:
$ cd ../
Move your shell to your home directory:
$ cd ~/
Determine file type of file filename:
$ file filename
$ cat filename
Display contents of file filename. Some options include:
-n
(Numbers output lines)-T
(Suppress tab characters)$ more filename
Similar to cat
but pages results.
$ less filename
Similar to more
but with vi
controls.
Displays last 10 lines of file filename:
$ tail filename
Displays last 3 lines:
$ tail -n 3 filename
Displays first 10 lines of file filename:
$ head filename
Displays first 3 lines:
$ head -n 3 filename
$ sort filename
Displays sorted contents of file. Some options include:
-n
(For sorting numbers correctly)-M
(For sorting months correctly)–output=FILE
(Spits results out to file)Example - Sort password file numerically based on column 3 (UID):
$ sort -t ':' -k 3 -n /etc/passwd
$ locate
Searches updatedb for files where any part of path matches string.
$ find
Searches filesystem live based on file attributes.
$ grep searchterm filename
Search filename for searchterm and output lines in file where it is found. Some options include:
-n
(Show line numbers on results)-v
(Output lines that don't match)-c
(Output a count of result lines)Searches path for searchterm:
$ grep searchterm path/
For more information, see grep.
Create an empty file named filename:
$ touch filename
Create a new folder named newfolder:
$ mkdir newfolder
Create a new tree of folders at once:
$ mkdir -p newfolder/subfolder/subfolder
$ cp sourcefilename destinationfilename
Copy file. Some options include:
-f
Force any overwrites-i
Force shell to ask if you want to overwrite-n
Do not overwrite targets-R
Recursive into subdirectoriesCopy file into destination path:
$ cp sourcefilename destinationpath/
Copy file into pwd:
$ cp /source/filename .
Copy folder:
$ cp -R sourcefolder/ destinationfolder
Copy folder into pwd:
$ cp -R /source/folder/ .
Create symbolic link (symlink) in pwd:
$ ln -s sourcefilename ./linkname
This command normally creates hard links by default. The -s
flag directs ln
to create a symlink instead of hard link. In 9/10 cases, you will probably only need to use symlinks.
To use ln
to add, say, a symlink for an executable AppImage to your account's personal /bin/ directory, and assign it a new shorthand name, you would run something like this:
$ ln -s path/to/the.appimage ~/.local/bin/newname
To rename files, you intuitively use the move command:
$ mv sourcefilename destinationfilename
Move file to another path and rename:
$ mv /path/sourcefilename /anotherpath/destinationfilename
$ rm filename
Delete file. Some options include:
-f
(Force delete)-i
(Prompt before every removal)-d
(Remove empty directories)-r
(Remove directories and contents recursively)Delete all files within pwd:
$ rm ./*
Delete all files within directory foldername:
$ rm foldername/*
Delete all files matching extension .bar within pwd:
$ rm ./*bar
Delete folder:
$ rmdir foldername
rmdir
will not delete a folder with contents. Use rm -rf foldername/
to have rm to recursively delete the folder and its contents instead.
This article is part of a series on Command Line | |
Linux, MacOS & BSD | |
---|---|
Shells: | Bash (Getting Started - Shortcuts & Piping - Managing Processes - Users & Permissions - Files & Archives - Customization) - zsh |
Emulators/Multiplexers: | tmux |
Windows | |
PowerShell |