mis·cel·la·ne·ous
public IP ~ dig +short myip.opendns.com @resolver1.opendns.com
awk ~ awk '{print $1,$2}'
// use {} to specify action , $ to specify location
~ awk -F "," '{print $1}'
// use -F to specify field separator and then print
XML file viewing on kali ~ xsltproc xmlfilename.xml -o newfilename.html
~ firefox newfilename.html
To delete unwanted characters ~ tr -d {} [] "
~ tr -d /"
(use / to avoid error)
fdisk -l
→ List all devices
Logs can be viewed on /var/log/
in debian distributions
Last updated
Was this helpful?