# echo "thislinehas%allovertheplace%%asdf%%" | awk '{print $0}' thislinehas%allovertheplace%%asdf%% Really quick… the above and below commmand simply tells awk to print the inputed line, so that the output should look as if itRead More…
AWK – convert BYTES to HUMAN READABLE
Use this convertbytes2human function, If you want to convert a number of bytes (for example 43252) or an exponential number number of bytes (such as 1.03e5) to a human readable size. NOTE: sinceRead More…
AWK – missing ABS – Absolute Value
# Awk is missing ABS – absolute value – so we have to make it. # if you want to do: y=abs(x) # you cant just write the above as abs(x) isRead More…
BASH – Seconds to Split Time / Human Readable Converter – Convert seconds to hours, minutes, seconds
This will convert a second into a more feasible number split up into parts of hrs/min/sec (or if you want also days and weeks and years) Provided 5 configurations of this converterRead More…
Solaris interface stats with netstat & ndd
Solaris “ifconfig” and “ifconfig -a” miss out on interesting values like “error” & “drop” etc. netstat and ndd are its replacement in that case # see common stats – usually seen withRead More…
Changed Windows 8.1 Font to Monospace Front, i.e. Consolas
From this video: https://www.youtube.com/watch?v=tBxoR4TBdks NOTE: this is also how you would change the default font of many apps as they use the default Windows font. So I really just wanted to changeRead More…
Making Rename.pl output prettier – Beautifying rename.pl script/program – converting/fixing filenames article
NOTE: The “rename” tool im using is the perl rename tool sometimes called “prename”, “rename.pl”, or simply rename (sidenote, there is also another similar tool called “rename” tool from a package calledRead More…
DU & LS – APPARENT SIZE vs DISK USAGE Size – Sparse Files and stuff
NOTE ABOUT UNITS BELOW: I incorrectly state they are called Kilobytes, but in reality they are kibibytes. I have the short hand notation correct. A KiB is 1024 bytes. A real KilobytesRead More…
Luns vs Shares – My explanation on – What is the difference between Shares and Luns?
The age old question, whats the difference between LUN and a SHARE. And easy way to tell them apart is to see how you access them. Look at the screnshots below andRead More…
WGET download whole directory/index/fancyindexed site + download full website
This article is sectioned off weird, I apologize for that. But the information is still very good: * To find out how to download a full Normal website (or full domain ifRead More…