mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
* extfs/urar.in: rar lists directories after files, so sort "list"
command output by names to prevent duplications.
This commit is contained in:
parent
5b24e5dc1b
commit
320b62f87e
@ -1,3 +1,8 @@
|
||||
2002-12-12 Andrew V. Samoilov <sav@bcs.zp.ua>
|
||||
|
||||
* extfs/urar.in: rar lists directories after files, so sort "list"
|
||||
command output by names to prevent duplications.
|
||||
|
||||
2002-12-12 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* extfs/urar.in: Strengthen quoting. Don't use full path to rar
|
||||
|
@ -95,7 +95,9 @@ cmd="$1"
|
||||
shift
|
||||
|
||||
case "$cmd" in
|
||||
list) mcrarfs_list "$@" ;;
|
||||
list) mcrarfs_list "$@" | sort +9 ;; # rar lists directories
|
||||
# after files, so sort names
|
||||
# to prevent duplication
|
||||
rm) mcrarfs_rm "$@" ;;
|
||||
rmdir) mcrarfs_rm "$@" ;;
|
||||
mkdir) mcrarfs_mkdir "$@" ;;
|
||||
|
Loading…
Reference in New Issue
Block a user