mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 00:17:25 +00:00
68527ff20c
This ends up saving a surprising number of bytes.
15 lines
929 B
Fish
15 lines
929 B
Fish
|
|
# Peek inside of archives and list all files
|
|
complete -c unrar -a "(__fish_complete_unrar)"
|
|
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a e -d "Extract files to current directory"
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a l -d "List archive"
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a lt -d "List archive (technical)"
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a lb -d "List archive (bare)"
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a p -d "Print file to stdout"
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a t -d "Test archive files"
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a v -d "Verbosely list archive"
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a vt -d "Verbosely list archive (technical)"
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a vb -d "Verbosely list archive (bare)"
|
|
complete -x -c unrar -n '__fish_use_subcommand' -a x -d "Extract files with full path"
|
|
|