2019-11-30 19:27:17 +08:00
|
|
|
function __fish_complete_unrar -d "Peek inside of archives and list all files"
|
|
|
|
set -l cmd (commandline -poc)
|
|
|
|
set -e cmd[1]
|
|
|
|
for i in $cmd
|
|
|
|
switch $i
|
|
|
|
case '-*'
|
|
|
|
continue
|
|
|
|
|
|
|
|
case '*.rar'
|
|
|
|
if test -f $i
|
|
|
|
set -l file_list (unrar vb $i)
|
2020-02-23 17:55:30 +08:00
|
|
|
printf "%s\tArchived file\n" $file_list
|
2019-11-30 19:27:17 +08:00
|
|
|
end
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2006-11-03 07:57:27 +08:00
|
|
|
|
|
|
|
complete -c unrar -a "(__fish_complete_unrar)"
|
|
|
|
|
2017-10-12 01:17:35 +08:00
|
|
|
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"
|
2006-11-03 07:57:27 +08:00
|
|
|
|