4 # ACE Virtual filesystem executive v0.1
5 # Works with unace v2.5
7 # Copyright (C) 2008 Jacques Pelletier
8 # May be distributed under the terms of the GNU Public License
9 # <jpelletier@ieee.org>
14 # Define which archiver you are using with appropriate options
17 # ACE_PUT="unace ?" not available
19 # The 'list' command executive
21 # Unace: DD.MM.YY HH.MM packed size ratio file
25 $ACE_LIST "$1" | gawk
-v uid
=${UID-0} '
26 BEGIN { Month="JanFebMarAprMayJunJulAugSepOctNovDec" }
31 date[3]=date[3] + 1900
33 date[3]=date[3] + 2000
35 printf "-rw-r--r-- 1 %-8d %-8d %8d %s %2d %4d %s %s\n", uid, 0, $3, substr(Month,3*(date[2]-1)+1,3),date[1],date[3], $2, $6
40 # Command: copyout archivename storedfilename extractto
43 $ACE_GET "$1" "$2" > /dev
/null
2>&1
54 list
) mc_ace_fs_list
"$@" ;;
55 copyout
) mc_ace_fs_copyout
"$@" ;;