Skip to content

Instantly share code, notes, and snippets.

@priyabratary
priyabratary / linux_console_commands.sh
Created May 6, 2018 14:50 — forked from alkavan/linux_console_commands.sh
All kind of useful Linux commands.
# I book marked some sites with useful Linux commands i found.
# then i noticed they were down, so i loaded them via google cache, and copied here.
# source: http://blog.urfix.com/
# source: http://www.pixelbeat.org/cmdline.html
# Enjoy!
# How to run process as background and never die
#
# nohup means: Do not terminate this process even when the stty is cut off.
# > /dev/null means: stdout goes to /dev/null (which is a dummy device that does not record any output).