Adding more order with the ls -l option
ls -l
Now that we have more files and directories in the ~/workspace directory, is there a way of displaying them in a more…
~/workspace
The mkdir command makes directories, but what about files?
mkdir
Wonderful question! In order to create files, execute the following inside our new dir2 directory:
Creating new directories and files
If you are asked to start a new software project, you’ll almost certainly need to create a directory that can hold…
Navigating directories using the CLI?
Bash provides a widely used command called cd or change directories command that allows the user to navigate…
cd
Let’s list the ~/workspace directory contents
So we now know that we are currently on the /home/root/workspace. The pwd command tells us that.
/home/root/workspace
pwd
As the CLI does not provide a graphical user interface or GUI for interacting with files and folders, how do we…
The command line interface, better known as CLI, is just another way to interact with the computer. This technology works with text commands typed line by line…