Linux mv Command Tutorial

Linux mv Command Tutorial

Linux provides the mv command in order to move files and directories. The mv command can be also used for Unix, BSD even MacOSX operating systems in the same way. The mv command makes cuts to the specified files and directories and pastes them into the specified path. The move operation also called rename files … Read more

How To Disable Screen Lock/Saver In GNOME Desktop(Ubuntu, Debian, CentOS, RHEL, Fedora?

How To Disable Screen Lock/Saver In GNOME Desktop(Ubuntu, Debian, CentOS, RHEL, Fedora?

Most of the modern operating systems provide the screen lock or screen saver for security reasons. Also, distributions like Ubuntu, Debian, CentOS, RHEL, Fedora provides the screen lock or screen saver by default. The screen saver term comes from the old times when the computer is not used some beautiful and interesting pictures are shown … Read more

Bash Exit Command and Exit Status

Bash Exit Command and Exit Status

Bash and bash scripts executed and terminated after execution. After the bash script execution is complete some information about the script is returned. This information is called exit status or exit code. The exit status or exit code can be also returned by using the exit command by using explicitly. Exit Status Every shell command … Read more

List Directories In Linux

List Directories In Linux

Directories or folders are used to store different items like files, directories, folder data, etc. While working with these items we may need to list them especially directories. There are different commands those can be used to list directories. In this tutorial, we will learn how to list directories in Linux. List Directories with ls … Read more

Linux Bash exec Command Tutorial

Linux Bash exec Command Tutorial

Linux Bash shell provides the exec command in order to create a new process for the provided command and replace it with the current bash shell process. The exec command derived from the bash low-level exec() method. The exec command executes provided command with the provided arguments. exec Command Syntax The bash exec command has … Read more

Passing Function Parameters In Bash

Passing Function Parameters In Bash

As a flexible and advanced scripting environment bash provides the ability to create and run functions. Functions can be created without parameters or with parameters. By using functions with parameters the functions can be used more efficiently by using different data for different cases. In this tutorial, we will examine how to pass parameters into … Read more

How To Make POST Request with cURL?

How To Make POST Request with cURL?

The cURL is computer software and command-line tools used to make requests for different protocols. But the most popular usage with the curl command is making HTTP post requests. Even the curl command-line tool is created for the Linux operating systems it is cross-platform which can be used for Windows, MacOSX, BSD, etc. In this … Read more

Linux tee Command Tutorial

Linux tee Command Tutorial

The Linux tee command is used to process the standard input and copy the input data into another output or a file. The tee command is generally used with other commands in order to save their input into a file and also redirect to the other commands for processing. tee Command Syntax The Linux tee … Read more

Linux passwd Command Tutorial

Linux passwd Command Tutorial

Linux provides the passwd command in order to manage password and related configurations. The passwd can be used for the current user and other users. In order to use passwd command for other users, the root privileges should be provided by logging in to the root or using the sudo command. passwd Command Syntax The … Read more