Skip to content

Linux Commands

Summary

The ln command in Linux is used to create links between files. It allows you to access the same file through multiple names, either as hard links or symbolic (soft) links. This post will cover the usage of ln, provide examples, and explain the commonly used flags.

nohup Command in Linux

Summary

The nohup command in Linux allows you to run a command that will continue to execute even after you close the terminal or log out. It prevents the command from receiving the SIGHUP (hang up) signal, which is typically sent when the terminal is closed.

split Command in Linux

Summary

The split command is a utility in Linux used to divide a file into multiple smaller files. It's particularly useful when dealing with very large files that are difficult to manage or process as a single unit.

vim - A Powerful Text Editor

Summary

vim is a highly configurable text editor built to enable efficient text editing. It is an improved version of the vi editor distributed with most UNIX systems. It's known for its modal editing and powerful command-line interface.

whereis Command in Linux

Summary

The whereis command is a quick and simple utility in Linux used to locate the binary, source, and manual page files for a given command. It's helpful for understanding where a command is installed and accessing related documentation.