There are many ways to view files in GNU/Linux. One of the simplest command line tools for viewing files is cat. The cat command, short for concatenate, is actually intended for joining multiple files into one, but it works equally well for viewing text files.
Continue reading Command Line Basics: View Files With catlinux
I recently wrote a script to watermark all of the image files in a directory. Most of the images I use on this website are PNG files, but I occasionally use JPGs. The challenge in my script was to find all of the image files in the directory regardless of image type. After a bit …
Continue reading Command Line Basics: Determine File MIME TypesI previously wrote up a post showing how to watermark images in Linux with ImageMagick. Without too much work you can write a script to do batch processing of your images. This way you can watermark a whole directory of images at once.
Continue reading Batch Watermark Images in LinuxI recently discovered that one of my most popular posts had been poached by another blog with out providing credit – images and all. I decided that it would be best to watermark my images to make it more difficult to rip off my content. This procedure could also be done easily in GIMP, but …
Continue reading How To Watermark Images With ImageMagick in LinuxI often find myself browsing my filesystem with Nautilus (the GNOME file manager) and wanting a terminal window to manipulate files in the current directory. I decided to take a shot at writing my own Nautilus script to solve the problem. So here’s my first Nautilus script. Save it in $HOME/.gnome2/nautilus-scripts. I named it terminal-here …
Continue reading Nautilus Script to Launch a Terminal