Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the js_composer domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/holhol2/public_html/wp-includes/functions.php on line 6121
Sort Command in Linux with Examples

Sort Command in Linux with Examples

SORT command in Linux is used to arrange the record in a specific order according to the option used. It helps in sorting the data in the file line by line. SORT command has different features that it follows in the resultant of commands. First is that the lines having numbers will come before the […]

Linux Tail Command with Examples

Linux Tail Command with Examples

As the name implies, the tail command is used to display the last values of the content of the file. By default, the last 10 lines are selected. Whereas, we can customize the number of lines by providing the number in the command. Syntax: There can be more than one file in the command. Linux […]

Linux Head Command with Examples

Linux Head Command with Examples

As the name shows, the head command displays the first N lines of data. By default, it is a 10 number but can be customized. It is opposite to the tail command because the tail command helps in displaying the last N lines from the file. Prerequisite: The Linux environment is necessary to run these […]

Linux Export Command with Examples

Linux Export Command with Examples

The export command is a built-in command of the shell. Environmental variables are exported in it as child processes. The existing environment variables are not affected. It is also known as the bash bullets command. The export command helps update the current position of the shell session because of the change we have made with […]

Linux Source Command with Examples

Linux Source Command with Examples

The source seems to be an integrated shell instruction that reads and executes the contents of a document (commonly a bundle of instructions) that is provided as a parameter within the present shell script. Upon obtaining the contents of the given files, the instruction delivers them to the TCL interpreter only as a textual program, […]

Linux Pipe Command with Examples

Linux Pipe Command with Examples

The ‘pipe’ command is used in both UNIX and Linux operating systems. Pipes help combine two or more commands and are used as input/output concepts in a command. In the Linux operating system, we use more than one pipe in command so that the output of one command before a pipe acts as input for […]

How to Write or Edit /etc/fstab

How to Write or Edit /etc/fstab

In Linux, there are multiple system configuration files that regulate system behavior. The fstab file is such a configuration file that stores all the information about various partitions and storage devices on the computer. At the time of boot, the fstab file describes how each partition and device will mount. Let’s dive deep into the […]

How can I see DPKG and apt history

How can I see DPKG and apt history

This tutorial explains how to see dpkg and apt history in Debian-based Linux distributions. After reading this tutorial, you will know how to find information about installed, removed, and upgraded packages using commands apt, dpkg-query, and reading dpkg logs. There are instructions to create a list of installed packages, install all listed packages on a […]

How to Use Ksnip to Annotate Images and Screenshots in Linux

How to Use Ksnip to Annotate Images and Screenshots in Linux

This article will cover a guide on installing and using Ksnip image and screenshot annotation utility available for Linux. Developed in C++ and Qt, this application can be used as a replacement for another similar Linux app called “Shutter”, whose development picked up again after a long time. In fact, it has some useful features […]

How To Use “Truncate” Command In Linux?

How To Use “Truncate” Command In Linux?

Sometimes we need to remove the content of a file without deleting the file; for that Linux operating system offers a command called “truncate”. It is used to extend or reduce the file size. Truncating a file is much quicker and simpler without modifying the permissions and ownership of the file. The truncated size depends […]