Quantcast
Channel: My Science Is Better » cli
Browsing latest articles
Browse All 3 View Live

Create PDF from multiple image files on Linux

I had a bunch of image files A01.jpg, A02.jpg and so forth that i needed created into a PDF. ImageMagick to the rescue: cd /path/to/jpgs convert -define pdf:use-trimbox=true *.jpg batbox.pdf The post...

View Article


Real time folder monitoring in CLI Linux

I needed to see the changes to a folder in realtime and after a bit of looking around, i’ve found this solution: watch -d -n 1 'df; echo " "; echo "Local folder updates:"; ls -FIAt;' If you want to...

View Article


How To: Delete ALL older kernels

If you are using Ubuntu, there is a good chance you get kernel upgrades once in a while. There is no reason, after you’ve booted the new kernel and verified that everything is working properly, why you...

View Article
Browsing latest articles
Browse All 3 View Live