Shell: Command: fping group of ip addresses
fping -a -q -g 192.168.0.0/24
# recommended
posts that share tags with this one
Bash/BASH
How To: cdspell – Directory Typo Correction
2014-07-15
1 min
read →
Bash/BASH
# bash-shell
Generate Random ASCII Art in shell
How to generate random ascii art in shell: wget -qO - http://www.asciiartfarts.com/random.cgi | sed -n '/<pre>/,/<\/pre>/p' | sed -n '/<table*/,/<\/table>/p' | sed…
2014-05-04
1 min
read →
shell
$ shell
Convert Files from Linux/Unix Format to Windows and Vice Versa
With AWK: awk '{ sub("\r$", ""); print }' windows.txt > unix.txt awk 'sub("$", "\r")' unix.txt > windows.txt With TR tr -d…
2014-04-06
1 min
read →
0 comments