Linux Administration
System Recovery
Remote Desktop Solutions
Command Line Tricks
xargs
Pipe HEREDOC to xargs When creating a HEREDOC, you can use any keyword to denote the start and e...
paste
apple banana pear mango grapes fruit.txt cat fruit.txt | paste -s -d ',' - Using piped i...
Disable Terminal Chime
Linux User Scope Set this line in ~/.inputrc set bell-style none Then, run this command: bind -f...
Get User Input (Shell Agnostic)
function getUserInput () { if [ $# -gt 1 ] ; then echo "Usage example: $0" ...
Generate New UUID4
echo $(cat /proc/sys/kernel/random/uuid)