DEV Community

Muhammad Jazman
Muhammad Jazman

Posted on

alias 7z

max compression for 7z

alias 7z_='7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on'
Enter fullscreen mode Exit fullscreen mode

split 50 megabyte, telegram limit sending file

alias 7z_50m='7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on -v50000000b'
Enter fullscreen mode Exit fullscreen mode

add a password 123 to the 7z

alias 7z_p='7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on -p123 -mhe'
Enter fullscreen mode Exit fullscreen mode

add a password 123 and split 50 megabyte

alias 7z_50m_p123='7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on -v50000000b -p123 -mhe'
Enter fullscreen mode Exit fullscreen mode

Top comments (0)