5 Commands Line Every Programmer Should Know
Command lines are important for any area of programming.
Introduction
Nowadays, with the development of numerous software, graphical interfaces, text editors, etc. Basic and necessary knowledge for any programmer has been neglected or forgotten. However, its use is very important for the development of any application, so I will list 5 important commands in this article.
Settings
To execute these commands we are using the Windows Subsystem for Linux (WSL2) with the Ubuntu operating system.
Command lines (CLI)
ls (List)
ls: Listing the contents of a directory
there are some flags that can be used.
ls -a : Listing all contents of the current directory
ls -l: Listing the non-hidden contents of the current directory in long format
ls -la: Listing all contents of the current directory in long format
CD (Change directory)
cd: Changing directories
cd .. : Change to the parent directory of the current directory:
MKDIR (Make a directory)
mkdir: Creating a directory
RMDIR (Remove a directory)
rmdir: Deleting an empty directory
CP (Copy)
cp: copy a file