Life with 🐘 🐳 🐧 πŸ’»

Follow @DennisdeBest

Keeping track of time with a bash script

Sometimes, while writing some code, I can not keep track of time and end up not really knowing the time I have spent on it.

So to keep an eye on this I can make sure to look at my watch and writing down the starting time but this is something I would not be able to do all the time. It would also n...

Continue reading

A Bash Script To Create New Scripts !

In Linux I tend to create my own scripts to try to automate the most stuff possible. In order to do so I used to create a new file in /usr/local/bin, make it executable and then start writing script into that file :

touch /usr/local/bin/my-script
chmod +x /usr/local/bin/my-script
vim /usr/local/...

Continue reading