Tag: command line

  • 16 Cool Ass Random Linux Stuff

    $ echo “Hello world” Hello world Urfix has compiled a sweet ass list of random stuff you can do from the command line. Hope you enjoy. Fry: Make up some feelings and tell her you have them. 1 Multiple variable assignments from command output in BASH read day month year <<< $(date +’%d %m %y’)…

  • Naughty Linux

    Sometimes when you type in the command line you don’t realize what you are actually saying. Unzip, mount, finger. Someone might over hear you and think your a pervert.   Here’s an example:

  • NOT – The Best 25 Linux Commands

    Here is another installment of Command Line Gems, I present you with the “Not” The best Linux Commands. 1) Save an HTML page, and covert it to a .pdf file wget $URL | htmldoc –webpage -f “$URL”.pdf – ; xpdf “$URL”.pdf & Uses htmldoc to perform the conversion 2) backup and synchronize entire remote folder…

  • 11 Awesome DD Commands

    dd is a common Unix program whose primary purpose is the low-level copying and conversion of raw data. dd is an application that will “convert and copy a file”according to the referenced manual page for Version 7 Unix and is most likely inspired from DD found in IBM JCL, and the command’s syntax is meant…