Advertisement
Guest User

Untitled

a guest
Sep 15th, 2014
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $ echo a;b > example.csv
  2. $ echo d;e >> example.csv
  3. $ hexdump -C example.csv
  4. 00000000 61 3b 62 0a 64 3b 65 0a |a;b.d;e.|
  5. 00000008
  6. $ uconv --add-signature example.csv | hexdump -C
  7. 00000000 ef bb bf 61 3b 62 0a 64 3b 65 0a |...a;b.d;e.|
  8. 0000000b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement