Did you want many dirs?

Creating directories/folders can be a laborious task if you need to make many especially if they are nested, this handy trick saves your bacon and makes life a lot easier! # -p means create the whole structure if it doesn't exist mkdir -p {dir1,dir2}/{a,b,c}/hello # Output crowzfx@pi-4b-3:/tmp/dir-blog$ tree . |-- dir1 | |-- a | … Continue reading Did you want many dirs?

Cron!

Cron is a time-based scheduler to execute scripts/commands on a time frame that you set. This is a neat little utility that is often over-looked for forgotten. I'll be honest I didn't have much experience for cron for a few years so basically forgot all there is to know! Well here is the basics anyone … Continue reading Cron!