News

Bash scripting is every Linux administrator's Swiss Army knife. Learn how using a for-loop in conjunction with Bash scripts can produce powerful results.
One of the most common errors when using scripts bash on GNU/Linux is to read a file line by line by using a for loop (for line in $ (cat file.txt) do. ..). In this example, the for loop leads to an ...