Awk Tutorial and Introduction

Posted on April 07, 2019 in Linux

If you deal with a large data files with multiple rows and columns and you would like to make some quick edits, selection or manipulation right from the terminal, awk is the tool to look for.


Continue reading

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