Here is a list of commonly used Linux commands:
ls
: List files and directories.cd
: Change directory.cp
: Copy files and directories.mv
: Move or rename files and directories.rm
: Remove files and directories.mkdir
: Make a directory.rmdir
: Remove a directory.touch
: Create a new file or update the timestamp of an existing file.cat
: Concatenate files and display them on the terminal.more
: Display the contents of a file, one screen at a time.less
: Similar tomore
, but allows you to scroll up and down.
For more information on Linux commands, visit our Linux Commands Guide.
Note: The following command can be used to search for files recursively in a directory:
find /path/to/directory -name "filename"
Linux Command Line
If you're interested in learning more about Linux, consider exploring our Linux Basics section.