| UNIX <-> Windows Conversions |
| | Convert File from Unicode to ASCII | iconv -c -f UNICODE -t ASCII infile > outfile |
| | UNIX -> Windows Text File conversion | unix2dos myfile.txt |
| | Windows -> UNIX Text File conversion | dos2unix myfile.txt |
| Hashing |
| | Quickly Check if two hashes are equal (doing so at the naked eye is not easy) | # test 612e46f434f4bdcd60ba202e67db43 = 612e46f434f4bdcd60ba202e67db43 # echo $? (a result of 0 means equal ; 1 means they differ) |