]> git.phdru.name Git - dotfiles.git/commitdiff
.mc/menu: compress the current subdirectory to tar.{lzma,xz}
authorOleg Broytman <phd@phdru.name>
Thu, 24 Mar 2016 15:31:14 +0000 (18:31 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 24 Mar 2016 15:31:14 +0000 (18:31 +0300)
.mc/menu

index 9c01575915fd533ff42670ac2b6227930c9721ea..b873fc966dc7c488736bfee2d3f9f609285ef906 100644 (file)
--- a/.mc/menu
+++ b/.mc/menu
@@ -220,6 +220,24 @@ g  Compress the current subdirectory to tar.gz
    cd .. && tar cvf - "$Pwd" | gzip -f9 > "$tar".tar.gz &&
    echo ../"$tar".tar.gz created.
 
++ t d & f ^\.\.$
+l  Compress the current subdirectory to tar.lzma
+   Pwd="`basename %d /`"
+   echo -n "Name of the distribution file (without extension) [$Pwd]: "
+   read tar
+   if [ "$tar"x = x ]; then tar="$Pwd"; fi
+   cd .. && tar cvf - "$Pwd" | lzma -f9 > "$tar".tar.lzma &&
+   echo ../"$tar".tar.lzma created.
+
++ t d & f ^\.\.$
+x  Compress the current subdirectory to tar.xz
+   Pwd="`basename %d /`"
+   echo -n "Name of the distribution file (without extension) [$Pwd]: "
+   read tar
+   if [ "$tar"x = x ]; then tar="$Pwd"; fi
+   cd .. && tar cvf - "$Pwd" | xz -f9 > "$tar".tar.xz &&
+   echo ../"$tar".tar.xz created.
+
 + t d & f ^\.\.$
 t  Compress the current subdirectory to tar
    Pwd="`basename %d /`"