Essential Linux & Git Commands: A Quick Reference
Classified in Design and Engineering
Written at on English with a size of 5.77 KB.
Linux
Command | Description | Command | Description |
---|---|---|---|
cd | Change the current working directory. | ls | List files and directories. |
pwd | Print the current working directory. | cp | Copy files and directories. |
echo | Display a message. | mv | Move or rename files and directories. |
history | Display a list of previously executed commands. | rm | Remove files. |
exit | Terminate the current shell session. | mkdir | Create a new directory. |
type | Display information about a command. | rmdir | Remove a directory. |
bg | Put a job in the background. | cat | Concatenate and display files. |
kill | Send a signal to a process to terminate it. | touch | Create an empty file. |
wait | Wait for a process to complete. | chmod | Change file permissions. |
read | Read a line of input from the user. | chown | Change file ownership. |
printf | Format and print a message to the console. |