Ticket #2703: mc.menu.no.lzma.patch

File mc.menu.no.lzma.patch, 1.3 KB (added by birdie, 12 years ago)
  • mc.menu

    old new  
    4545        tar cf - "$Pwd" | bzip2 -f > "$tar.tar.bz2" && \ 
    4646        echo "../$tar.tar.bz2 created." 
    4747 
    48 5       Compress the current subdirectory (tar.p7) 
     485       Compress the current subdirectory (tar.7z) 
    4949        Pwd=`basename %d /` 
    5050        echo -n "Name of the compressed file (without extension) [$Pwd]: " 
    5151        read tar 
     
    5454        tar cf - "$Pwd" | 7za a -si "$tar.tar.7z" && \ 
    5555        echo "../$tar.tar.7z created." 
    5656 
    57 6       Compress the current subdirectory (tar.lzma) 
    58         Pwd=`basename %d /` 
    59         echo -n "Name of the compressed file (without extension) [$Pwd]: " 
    60         read tar 
    61         if [ "$tar"x = x ]; then tar="$Pwd"; fi 
    62         cd .. && \ 
    63         tar cf - "$Pwd" | lzma -f > "$tar.tar.lzma" && \ 
    64         echo "../$tar.tar.lzma created." 
    65  
    66 7       Compress the current subdirectory (tar.lz) 
    67         Pwd=`basename %d /` 
    68         echo -n "Name of the compressed file (without extension) [$Pwd]: " 
    69         read tar 
    70         if [ "$tar"x = x ]; then tar="$Pwd"; fi 
    71         cd .. && \ 
    72         tar cf - "$Pwd" | lzip -f > "$tar.tar.lz" && \ 
    73         echo "../$tar.tar.lz created." 
    74  
    75 8       Compress the current subdirectory (tar.xz) 
     576       Compress the current subdirectory (tar.xz) 
    7658        Pwd=`basename %d /` 
    7759        echo -n "Name of the compressed file (without extension) [$Pwd]: " 
    7860        read tar