Add supported compression algo to completions for tar

- lzip (--lzip)
- LZMA (--lzma)
- lzop (--lzop)
- Zstandard (--zstd)
This commit is contained in:
Shun Sakai 2019-10-25 04:10:32 +09:00 committed by Fabian Homborg
parent b6fbec8107
commit 7ce38a1ee6

View File

@ -66,3 +66,7 @@ complete -c tar -s z -l gzip -d "Filter through gzip"
complete -c tar -l gunzip -d "Filter through gzip"
complete -c tar -l use-compress-program -r -d "Filter through specified program"
complete -c tar -s J -l xz -d "Filter through xz"
complete -c tar -l lzip -d "Filter through lzip"
complete -c tar -l lzma -d "Filter through lzma"
complete -c tar -l lzop -d "Filter through lzop"
complete -c tar -l zstd -d "Filter through zstd"