Tag: command

Watch a Log File for Changes using tail

This command will let you watch a log file for changes as soon as they happen

Create CD Image

These commands can be used to create an image of a CD/DVD/HDD. You can also use some GUI tool like…

Download Multiple Files with Wget

Wget can be used to download multiple files with just one command wget -c “http://example.com/file[1-9].htm” [tags]wget,download,multiple,series,linux,command,cli[/tags]

Command to make a CD/DVD ISO Image in Linux with dd

This command can be used to create an image of a CD/DVD/HDD. You can also use some GUI tool like…

Get the First Line of Command Output in Shell

Get just the first line of the output of a command… <command>|head -n1 ls -1|head -n1

Replace \n with another String

The command to convert all \n in a file to another string – very useful for list code generation. perl…

Remove Extension in Shell Scripting

This command will list all the files a folder without their extensions. Comes handy when doing shell scripting perl -e…

Extracting DAA Image Files

I once got a DAA file from a P2P network. Initally I was at a lose about how to extract…

Using Awk

Simple uses for awk Get the second column from the output ps aux | awk ‘{print $2}’ Use a different…

Mount ISO Images

Mounting ISO Images in Linux mount -t iso9660 -o loop <Image_File> <Mount_Point> How to Mount ISO/MDF Images in Linux