# echo "xor -s 11111 -f test.txt -k KEY > test_encrypted.txt" xor -s 11111 -f test.txt -k KEY > test_encrypted.bin # echo "uuencode test_encrypted.bin test_encrypted.bin > test_encrypted.bin.uu.txt" uuencode test_encrypted.bin test_encrypted.bin > test_encrypted.bin.uu.txt # echo "rm test_encrypted.bin" rm test_encrypted.bin # echo "uudecode test_encrypted.bin.uu.txt" uudecode test_encrypted.bin.uu.txt # echo "xor -s 11111 -f test_encrypted.bin -k KEY > test_unencrypted.txt" xor -s 11111 -f test_encrypted.bin -k KEY > test_unencrypted.txt # echo "diff test_unencrypted.txt test.txt" diff test_unencrypted.txt test.txt