
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Satish Kumar has Published 1032 Articles

Satish Kumar
409 Views
When working with Bash, it's important to understand the differences between using an alias, a script, and a new function. Each has its own unique use case and can be used to accomplish different tasks. Aliases An alias is a way to create a shortcut for a command or series ... Read More

Satish Kumar
11K+ Views
There are several ways to encrypt and decrypt directories in Linux, but one popular method is to use the "ecryptfs" utility. This utility allows you to encrypt a directory using the user's login passphrase, and automatically decrypts the directory when the user logs in. Gpgtar gpgtar is a utility that ... Read More

Satish Kumar
12K+ Views
To negate an "if" condition in a Bash script in Linux, you can use the "!" operator. For example, if you have an "if" statement that checks if a variable "x" is equal to 5, you can negate that condition by using "if [ ! $x -eq 5 ]" instead. ... Read More

Satish Kumar
11K+ Views
The /etc/hosts file is a simple text file used to map hostnames to IP addresses. It is used to resolve hostnames to IP addresses, bypassing the need for a DNS server. Each line in the file represents a single mapping, with the IP address followed by one or more hostnames ... Read More

Satish Kumar
33K+ Views
You can use the "mount" command to check if a directory is mounted on a Linux system. For example, to check if the directory "/mnt/data" is mounted, you can run − mount | grep "/mnt/data" If the directory is mounted, the command will return information about the mount point, ... Read More

Satish Kumar
2K+ Views
cd stands for "change directory" and is used to navigate the file system on a Linux computer. When used with a specific directory path as an argument, cd will change the current working directory to that location. For example, the command cd /home/user/documents will change the current working directory to ... Read More

Satish Kumar
2K+ Views
In Linux, a pipe is a mechanism that allows the output of one command to be used as the input for another command. Pipes allow for powerful command line operations by allowing the output of one command to be used as input for another command. Pipes Pipes are a feature ... Read More

Satish Kumar
1K+ Views
You can send emails from the terminal in Linux by using the command line tool called "mail." This tool is typically pre-installed on most Linux distributions. To send an email, you would use the syntax − echo "message body" | mail -s "subject" recipient@email.com You can also include attachments ... Read More

Satish Kumar
4K+ Views
To read the source code of shell commands on Linux, you can use the command line utility cat or less to view the file. You can also use a text editor such as vi, nano, or emacs to open and edit the code. For example, to view the source code ... Read More

Satish Kumar
9K+ Views
To search for a specific pattern within a specific file type using the grep command in Linux, you can use the -r option to search recursively through a directory and the -E option to specify the file extension. For example, to search for the word "example" within all text files ... Read More