Magnetic Knife Holder for your Office
I just bought a bunch of those magnetic knife holders. Mainly they are for my kitchen, but I am using one at my desk. Paper clips are pretty cool to keep notes there. Take a look.
Entrepreneur | DevOps Engineer | Speaker
I just bought a bunch of those magnetic knife holders. Mainly they are for my kitchen, but I am using one at my desk. Paper clips are pretty cool to keep notes there. Take a look.
I have added the following function to my bash example script: # Run external command and only procced, when exit code is 0 function try { $@ returnValue=$? echo “$returnValue” if [ $returnValue -ne 0 ] then log $ERROR “$@ Continue Reading …
These days I use bash more and more often for simple tasks on my Linux system, as well as for a University course I am taking. Have a look at the script: #!/bin/bash # Skript: bash_example.sh # Credit to: http://www.pro-linux.de/artikel/2/111/ Continue Reading …
Unfortunately I do not have the time, I used to have. I will not be able to write every article twice in German and in English. I hope, that you can forgive me if I continue this Blog with most Continue Reading …
I needed to print all files, that I placed in a certain folder before. The following line will do the job: for i in *; do lpr “$i”; done;