top of page

Linux: Smaller tools and building blocks

28 May 2021

Dr Edan Scriven, a QCIF eResearch Analyst at UQ, outlines Linux utilities and tools to help you monitor and control your tasks.

Open-source software Linux is full of utilities and tools to help you monitor and control your tasks. Here's some that I use every day.


Do you have a batch job running and want to monitor its output in real time? Or a cloud instance running a server and you want to watch its log output? Linux’s command doesn't just show the end of a file. Use and it will follow a file as it's being written. It can even follow multiple files, handy for watching a PBS job's and files at the same time.


Linux allows you to redirect output elsewhere, into other files and other programs too. Use the pipe— —to chain multiple commands into more complex tasks. For example, do you pass your job array index into your program but it's off by one, or you'd like to scale it by a non-integer factor? Maybe you can modify your program, but sometimes you can't or it's easier to just tweak your input. You can use the command to do basic mathematics in your job submission script, and backticks— —to use the output of one command as a parameter of another. For example:


Or you can use the pipe to filter files for interesting information. If you know your program outputs 'failed to converge after N iterations' when something's not right, you can put and together with a command like , like this:


And now the terminal that's running that command won't display a flood of output—just the bit you're watching for.


Many Linux commands are able to be used like this, as the building blocks of larger and more complex processing workflows.


This article was first published on 17/10/2019.

bottom of page