ImageMagick and Ubuntu 9.04
Using a command line tool like ImageMagick for image processing may sound a really counter-intuitive thing to do but there’s no need to do everything on a case by case interactive basis. Image resizing and format conversion come to mind [...]
Some things that I’d miss on moving from Linux to Windows
The latest buzz surrounding Windows 7 has caused one observer to suggest that it’s about to blast Linux from the desktop. My experiences might be positive but there are still things that I like about Linux that make me reluctant [...]
Automating FTP I: UNIX and Linux
Having gotten tired of repeated typing in everything at the prompt of an interactive command line FTP session and doing similar things via GUI route, I started to wonder if there was a scripting alternative and, lo and behold, I [...]
Using Korn shell commands in scripts running under the bash shell
This is actually a fairly simple one: just prefix the relevant command with "ksh" like below (in the example below, bash won’t know what to do with the print command otherwise): ksh print "Hello, world!" It’s also useful for running [...]