© 2023 Hashnode
#basic-linux-commands
In the realm of Linux system administration, knowing how to effectively manage tasks and automate repetitive processes is essential. One powerful tool that can assist you in achieving this is the cron…
Task: What is the linux command to To view what's written in a file. we use the cat command to read the content of the file. To change the access permissions of files. To check which commands …
This is the advanced shell scripting or not the beginner level at least. Using either Loops or commands with start day and end day variables using arguments create a dir in the current directory. ====…
Linux is an open-source operating system that has gained widespread popularity among programmers and developers worldwide. It is renowned for its flexibility, security, and customizability, making it …
We can create Directory in Linux with the use of mkdir command. mkdir - Make Directory To create a directory. Run mkdir command # mkdir dir name ex- #mkdir d1 D1 is the dir name. To create multiple directories #mkdir d2 d3 d4 To chang…
Basic Linux Commands 1. To View What's Written in a File: The cat command is used to display the contents of a file on the terminal. For example, to view the contents of a file named fruits.txt, run t…
Topics for #day2 What is Command in general and in technical terms? Basic Linux Commands What is Command in general and in technical terms? In general: A command is an instruction or order given t…
We can create File in Linux in different ways: Touch Command: The Touch command is the easiest way to create new empty files. Ex- # touch filename i.e #touch f (f is a filename) - It will create an empty file in pwd (present working direc…
In our previous blog, We got introduced to Linux and got to know some basic and must-to-know Terminologies. In this blog, we'll be discussing the 10 most Basic Linux Commands and I'll Provide you with…
Let's see some basic Linux commands to get you started: To view what's written in a file. ~ cat <filename> To change the access permissions of files. ~ chmod 744 <file/folder name> it will chan…