Handling terminal signals in bash scripts

Posted on March 30, 2019 in Linux

If you want to run a few commands after the user has pressed Ctrl+C to clean up or other, this is the way...


Continue reading

Xargs - piping the STDOUT to the argument of a command

Posted on March 30, 2019 in Linux

Xargs allows you to take the output of a program and pass it as an argument of some other program easily. Read on to learn more...


Continue reading