Advertisement
bb94

Untitled

Nov 14th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1.  
  2. $ cat Le04.exe | grep "瑞風 天堺"
  3.  
  4. $ echo "瑞風 天堺" | iconv -t UTF-16LE | xxd
  5. 00000000: 5e74 a898 0030 2959 3a58 0a00 ^t...0)Y:X..
  6.  
  7. $ cat Le04.exe | grep `echo "瑞風 天堺" | iconv -t UTF-16LE`
  8.  
  9. $ cat Le04.exe | grep `echo "瑞風 天堺" | iconv -t UTF-16BE`
  10.  
  11. $ cat Le04.exe | grep `echo "瑞風 天堺" | iconv -t Shift-JIS`
  12.  
  13. $ cat Le04.exe | grep `echo "瑞風 天堺"`
  14.  
  15. $ cat Le04.exe | grep `echo "瑞風 天堺" | iconv -t Shift-JIS`
  16.  
  17. $ cat Le04.exe | grep `echo "瑞風 天堺" | iconv -t UTF-16LE`
  18.  
  19. $ cat Le04.exe | grep `echo "瑞風 天堺" | iconv -t UTF-8`
  20.  
  21. $ cat Le04.exe | grep `echo "瑞風天堺" | iconv -t UTF-16LE`
  22.  
  23. $ cat Le04.exe | grep `echo "瑞風天堺" | iconv -t UTF-16BE`
  24.  
  25. $ cat Le04.exe | grep `echo "瑞風天堺" | iconv -t Shift-JIS`
  26.  
  27. $ cat Le04.exe | grep "Zuifeng Tenkai"
  28.  
  29. $ cat Le04.exe | grep "Zuifeng"
  30.  
  31. $ cat Le04.exe | grep "Tenkai"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement