X7ROOT File Manager
Current Path:
/usr/libexec/mc/extfs.d
usr
/
libexec
/
mc
/
extfs.d
/
📁
..
📄
README
(7.36 KB)
📄
README.extfs
(1.13 KB)
📄
a+
(3.13 KB)
📄
apt+
(9.5 KB)
📄
audio
(1.29 KB)
📄
bpp
(1.18 KB)
📄
changesetfs
(2.51 KB)
📄
deb
(5.4 KB)
📄
deba
(3 KB)
📄
debd
(10.26 KB)
📄
dpkg+
(8.79 KB)
📄
gitfs+
(786 B)
📄
hp48+
(3.58 KB)
📄
iso9660
(5.82 KB)
📄
lslR
(1.41 KB)
📄
mailfs
(5.7 KB)
📄
patchfs
(11.01 KB)
📄
patchsetfs
(2.26 KB)
📄
rpm
(13.93 KB)
📄
rpms+
(1.47 KB)
📄
trpm
(7.66 KB)
📄
u7z
(4.71 KB)
📄
uace
(1.48 KB)
📄
ualz
(1.25 KB)
📄
uar
(1.3 KB)
📄
uarc
(1.79 KB)
📄
uarj
(1.62 KB)
📄
ucab
(737 B)
📄
uha
(973 B)
📄
ulha
(3.78 KB)
📄
ulib
(2.76 KB)
📄
unar
(1.22 KB)
📄
urar
(4.37 KB)
📄
uwim
(5.09 KB)
📄
uzip
(14.91 KB)
📄
uzoo
(1.57 KB)
Editing: uar
#!/usr/bin/sh # # Written by Alex Kuchma <ask@bcs.zp.ua> # Alex Tkachenko <alex@bcs.zp.ua> # Updated by Vitezslav Samel <xsamel00@dcse.fee.vutbr.cz> # # (C) 1997, 1998 The Free Software Foundation. # # XAR=ar mcarfs_list () { # If $temp_replace string is part of the filename that part might get lost temp_replace='Unique Separator String' thisyear="`date +%Y`" $XAR tv "$1" | sed 's,^,-,;s, , 1 ,;s,/, ,' | sed -e "s/\( [0-2][0-9]\:[0-5][0-9]\)\( $thisyear \)\(.*\)/\1$temp_replace\3/" | sed -e "s/\( [0-2][0-9]\:[0-5][0-9] \)\([12][0-9][0-9][0-9] \)\(.*\)/ \2\3/" | sed -e "s/$temp_replace/ /" } mcarfs_copyout () { $XAR p "$1" "$2" > "$3" } mcarfs_copyin () { TMPDIR=`mktemp -d "${MC_TMPDIR:-/tmp}/mctmpdir-uar.XXXXXX"` || exit 1 name=`basename "$2"` (cd "$TMPDIR" && cp -fp "$3" "$name" && $XAR r "$1" "$name") rm -rf "$TMPDIR" } mcarfs_rm () { $XAR d "$1" "$2" } # override any locale for dates LC_ALL=C export LC_ALL umask 077 case "$1" in list) mcarfs_list "$2" ;; copyout) shift; mcarfs_copyout "$@" ;; copyin) shift; mcarfs_copyin "$@" ;; rm) shift; mcarfs_rm "$@" ;; mkdir|rmdir) echo "mcarfs: ar archives cannot contain directories." 1>&2 exit 1;; *) echo "mcarfs: unknown command: \"$1\"." 1>&2 exit 1;; esac exit 0
Upload File
Create Folder