Here are some commonly used Unix/Linux commands that may be useful for new users:
pwd
: Display the current working directory.cd
: Change the current working directory.ls
: List the files in the current directory.mkdir
: Create a new directory.rmdir
: Remove an empty directory.cp
: Copy a file or directory.mv
: Move or rename a file or directory.rm
: Remove a file or directory.touch
: Create a new empty file or update the timestamp of an existing file.man
: Display the manual page for a command.less
: View the contents of a file.cat
: Concatenate and display the contents of one or more files.grep
: Search for a pattern in a file or files.find
: Search for files in a directory tree.sort
: Sort the lines of a file.wc
: Count the number of lines, words, and characters in a file.head
: Display the first few lines of a file.tail
: Display the last few lines of a file.tail -f
: Follow the growth of a file in real time.ps
: Display a list of processes running on the system.These are just a few of the many commands that are available in Unix/Linux systems. You can use the man
command to learn more about these and other commands, or you can search online for more information and examples.