Linux Commands – awk

Linux Commands – awk Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed grep command in Linux which is used to match a PATTERN in a given file. https://cloudaffaire.com/linux-commands-grep/ In this blog post, we will discuss awk command in Linux. AWK is a language designed for text processing and typically used as a data extraction and reporting tool. AWK reads the input a line at a…

0 Comments

Linux Commands – grep

Linux Commands - grep Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed find command in Linux which is used to search for files in a directory hierarchy. https://cloudaffaire.com/linux-commands-find/ In this blog post, we will discuss grep command in Linux. grep command is used to match a PATTERN in a given file. grep command compares the search PATTERN with each character of the file from left…

0 Comments

Linux Commands – find

Linux Commands - find Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed curl command in Linux which is used to interact with servers. https://cloudaffaire.com/linux-commands-curl/ In this blog post, we will discuss find command in Linux. find command is used to search for files in a directory hierarchy. find command may begin with the options, followed by a list of files or directories that should be…

0 Comments

Linux Commands – curl

Linux Commands - curl Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed crontab command in Linux which is used to schedule cron jobs in Linux. https://cloudaffaire.com/linux-commands-crontab/ In this blog post, we will discuss curl command in Linux. curl command can be used to transfer data from or to a server. You can send request to server using curl command and get the response from the…

0 Comments

Linux Commands – crontab

Linux Commands - crontab Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed free command in Linux which is used to display current system memory usage. https://cloudaffaire.com/linux-commands-free/ In this blog post, we will discuss crontab command in Linux. crontab is used to schedule cron jobs in Linux. Using crontab you can schedule a repetitive or once in a while task. crontab uses crontab table files to…

0 Comments

Linux Commands – free

Linux Commands - free Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed df command in Linux which is used to get file system disk space usage. https://cloudaffaire.com/linux-commands-df/ In this blog post, we will discuss free command in Linux. free command is used to display current system memory usage. By default, free command displays the total amount of free and used physical and swap memory in…

0 Comments

Linux Commands – df

Linux Commands - df Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed du command in Linux which is used to get disk space utilization of files and directories. https://cloudaffaire.com/linux-commands-du/ In this blog post, we will discuss df command in Linux. df command is used to get file system disk space usage. df command without any argument prints the current disk space usage of file systems.…

0 Comments

Linux Commands – du

Linux Commands - du Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed ps command in Linux which is used to display current processes. https://cloudaffaire.com/linux-commands-ps/ In this blog post, we will discuss du command in Linux. du stands for disk usage and is used to get disk space utilization of files and directories. Normally the disk space is printed in the units of 1024 bytes, but…

0 Comments

Linux Commands – ps

Linux Commands - ps Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed chgrp command in Linux which is used to change the group ownership of a file or directory. https://cloudaffaire.com/linux-commands-chgrp/ In this blog post, we will discuss ps command in Linux. ps command is used to display current processes. ps command prints a snapshot of the currently active processes. If you want to have the…

0 Comments

Linux Commands – chgrp

Linux Commands - chgrp Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed chown command in Linux which is used to change a file or directory owner or group or both. https://cloudaffaire.com/linux-commands-chown/ In this blog post, we will discuss chgrp command in Linux. chgrp command is used to change the group ownership of a file or directory. chgrp command accepts both a group name or group…

0 Comments