Skip to content

Linux Commands

wc - Word Count

Summary

The wc command in Linux is a utility that displays the number of lines, words, and bytes (or characters) in a file. It's a simple yet powerful tool for quick text analysis.

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.