Guest User

Untitled

a guest
Nov 21st, 2017
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. wget --user=<USER> --password=<PASS> "ftp://<DOMAIN>/日本語ファイル名.txt"
  2.  
  3. << 日本語ファイル名.txt: そのようなファイルやディレクトリはありません
  4.  
  5. wget --user=<USER> --password=<PASS> --no-remove-listing "ftp://<DOMAIN>"
  6. cat .listing | nkf --guess
  7. << Shift_JIS (CRLF)
  8.  
  9. wget --user=<USER> --password=<PASS> "`echo ftp://<DOMAIN>/日本語ファイル名.txt | nkf -s`"
  10. wget --user=<USER> --password=<PASS> --remote-encoding=Shift_JIS "ftp://<DOMAIN>/日本語ファイル名.txt"
  11. wget --user=<USER> --password=<PASS> --remote-encoding=sjis "ftp://<DOMAIN>/日本語ファイル名.txt"
  12. wget --user=<USER> --password=<PASS> --remote-encoding=cp932 "ftp://<DOMAIN>/日本語ファイル名.txt"
Add Comment
Please, Sign In to add comment