Simple Linux Commands
Simple Linux Commands Getting into Linux, it is primordial to learn the basics of the Linux shell, a program that takes commands from the keyboard and gives them to the operating system to perform. This blog serves to demonstrate some simple Linux commands as a learning tool. We use a program known as the terminal(terminal emulator) which allows us to interact with the shell. The 4 commands that will be demonstrated are: ls , cd , pwd and mkdir . When opening the Linux terminal, the last character of the shell prompt should be "$" sign, however if you have the "#" sign instead, this can be quite dangerous since we are operating as a superuser; someone with admin privileges and we can delete or overwrite any file on the system. ls - List This command will list all the files and directories of a specified directory in alphabetical order by default. There are multiple flags that can change the behavior of a command and some common flags are: --help : when used as an a...