The Linux sudo command stands forSuper User Do. Generally, it is applied as a prefix of a few commands that superuser is allowed to execute. If we prefix the command along with other commands, it would execute that command with high privileges. In other words, it will permit user along ...
The Sort command in Unix is a filter command that sorts the input text and prints the result to stdout. I hope the Unix sort command syntax and options explained in this post are helpful.
Unix commands are inbuilt programs that can be invoked in multiple ways. Here, we will work with these commands interactively from a Unix terminal. A Unix terminal is a graphical program that provides a command-line interface using a shell program. This tutorial will provide a summary of some ...
This article provides practical examples for 50 most frequently used commands in Linux / UNIX. This is not a comprehensive list by any means, but this should give you a jumpstart on some of the common Linux commands. Bookmark this article for your future reference. Did I miss any frequently...
26. kill command examples Use kill command to terminate a process. First get the process id using ps -ef command, then use kill -9 to kill the running Linux process as shown below. You can also use killall, pkill, xkill to terminate a unix process. ...
This article provides practical examples for 50 most frequently used commands in Linux / UNIX. This is not a comprehensive list by any means, but this should give you a jumpstart on some of the common Linux commands. Bookmark this article for your future
19. ftp command examples Both ftp and secure ftp (sftp) has similar commands. To connect to a remote server and download multiple files, do the following. $ ftp IP/hostname ftp> mget *.html To view the file names located on the remote server before downloading, mls ftp command as shown...
Syntax and Options Related Commands What is insmod? insmod command is used to insert modules to Linux kernel. 3 insmod Examples 1. Specify module name as an argument The following command insert the module airo to the Linux kernel. # insmod kernel/drivers/net/wireless/airo.ko ...
Syntax and Options Related Commands What is cc? The cc compiler is the default compiler for Unix systems like Sun solaris. This is a powerful compiler used for compilation of C code. 5 cc Examples 1. A basic example Compiling a C code with cc compiler is very easy. For a very basic ...
3. find command examples Find files using file-name ( case in-sensitve find) # find -iname "MyCProgram.c" Execute commands on files found by the find command $ find -iname "MyCProgram.c" -exec md5sum {} \; Find all empty files in home directory ...