mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 01:47:48 +08:00
11 lines
577 B
Fish
11 lines
577 B
Fish
|
|
|
|
complete -c iconv -s f -l from-code --description "Convert from specified encoding" -x -a "(__fish_print_encodings)"
|
|
complete -c iconv -s t -l to-code --description "Convert to specified encoding" -x -a "(__fish_print_encodings)"
|
|
complete -c iconv -l list --description "List known coded character sets"
|
|
complete -c iconv -s o -l output --description "Output file" -r
|
|
complete -c iconv -l verbose --description "Print progress information"
|
|
complete -c iconv -l help --description "Display version and exit"
|
|
complete -c iconv -l version --description "Display help and exit"
|
|
|