So here’s the deal. Soon I’ll be managing new responsibilities that involves serious knowledge of cPanel/WHM, and although I have experience working with this platform, I’ve been studying the cPanel documentation as if my life depends on it. For the aforementioned purpose, I’ve been making my way through the documentation available in the cPanel University. So far it has been…
Month: November 2017
Bash: spaces turn into newlines on for loops
Have you ever tried to loop through a set of items in a for loop in bash just to discover that bash turns spaces into newlines making your script to break? Well, if you are in a hurry, use this before starting the for loop and come back afterwards for an explanation of what happened there: export IFS=$’\n’; Your final result might look like…