HTMLify
Makefile
Views: 51 | Author: abh
1 2 3 4 5 6 7 8 9 10 11 12 | xxd: main.c gcc main.c -o xxd test: xxd ./xxd test.txt diff: xxd xxd test.txt > a_test.hex ./xxd test.txt > b_test.hex diff a_test.hex b_test.hex rm a_test.hex rm b_test.hex |