
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
5K+ Views
Overview Generally, packages are installed in the default directory. Depending on the system's Linux version, it might be necessary to use a different directory such as /usr or /user/local. We might also want to install a particular software application for a single user rather than for the entire system. We'll ... Read More

Satish Kumar
5K+ Views
Introduction If you're working with Linux, there might be times when you'll want to copy several files at once and then remove some of them later. We're going to take a closer at several different methods for achieving such results. Renaming The Unwanted File You can rename the unwanted file ... Read More

Satish Kumar
6K+ Views
Overview When crontab runs a command, it doesn't read any environment variables from files like ~/.bashrc, ~/.bash_profile, etc. Because cron runs tasks from a non-interactive, non-login shell, it doesn't need an interactive user Some applications require environmental variables to function correctly. We’ll discuss different methods for loading environmental variables from ... Read More

Satish Kumar
511 Views
Overview Tmux is a terminal multiplexing utility for Unix systems. It provides an interface between several programs running simultaneously on one computer. Tmux allows us to detach from any terminal sessions without killing them. We can then reattached to any of the terminal sessions later on. We’ll learn the tmux ... Read More

Satish Kumar
4K+ Views
Overview We often run a grep command to look for specific strings of text within files. The grep command provides some additional functionality that makes the search even better. A feature that allows you to exclude certain directories from recurrence. This is useful when searching through large amounts of data. ... Read More

Satish Kumar
991 Views
Overview We'll look at some ways to redirect the output of processes to files and standard streams such as STDOut and STDERR simultaneously. The tee Command Tee is one of the most common Linux command line tools that we can use to redirect a process' output. It's also known as ... Read More

Satish Kumar
14K+ Views
Overview Symbolic links allow us to access files more easily, even if they're located in a different location. In this tutorial we'll learn how to remove symbolic links from our system and replace them with the original file. The Problem If we have an aDir folder and an aFile.text file ... Read More

Satish Kumar
2K+ Views
Overview In this article, we will discuss the error message that is displayed when you try to execute a command on your Linux system and it says “argument list too long”. This error can be caused by many reasons. In this post, I am going to explain what causes this ... Read More

Satish Kumar
2K+ Views
Introduction It's quite common for people to compare two directories. Many different factors make us want to find out whether there really is a difference between two things. For example, we normally want to figure out what's different from a previous situation when something goes wrong. We’ll learn how we ... Read More

Satish Kumar
6K+ Views
Overview We often perform various file operations on our Linux systems. One of the most common operations is to display certain columns from a text document. Here, we’ll cover the different methods for achieving this. Display Single Column Let's create a new folder for our example. The input.txt files contain ... Read More