tips_and_tricks
This is an old revision of the document!
How to delete spaces from file names on Unix systems using Shell
for f in *; do mv "$f" `echo $f | tr ' ' '_'`; done
How to get your IP addresses on Unix systems
ifconfig | awk '/inet/'
And on Microsoft Windows
ipconfig
If you need to know your public IP address, please visit ifconfig.bsd.am
tips_and_tricks.1741253729.txt.gz · Last modified: by av
