#linux
Read more stories on Hashnode
Articles with this tag
File Permissions in Linux: A Brief Guide to Using Chmod In Linux, file permissions are used to control access to files and directories. There are...
Shell script for creating n number for creating n no of directories in a given range if [ $# -ne 3 ]; then echo "Usage: $0 <directory name> <start...
What is Shell Scripting? Shell Scripting is a form of computer programming that entails writing scripts or sequences of commands within a shell, a...
1) mkdir - Create a new directory # The 'mkdir' command is used to create a new directory. # Example usage: mkdir new_directory 2) cd - Change the...