can you show me example how to use it ?
Hello, I want to add files found from the find command to a subfolder 7z2600-linux-x64/MANUAL/general in the archive test.zip How can I use the -si switch with find command and < "{}" ?? I am getting bash: {}: No such file or directory error find .. -mindepth 1 -maxdepth 1 -type f -exec ./7zz a -mx=0 -tzip "/home/azeem/Documents/test" -si"7z2600-linux-x64/MANUAL/general/{}" < "{}" \;
Hello, I want to add files found from the find command to a subfolder 7z2600-linux-x64/MANUAL/general in the archive test.zip How can I use the -si switch with find command and < "{}" ?? find .. -mindepth 1 -maxdepth 1 -type f -exec ./7zz a -mx=0 -tzip "/home/azeem/Documents/test" -si"7z2600-linux-x64/MANUAL/general/{}" < "{}" \;
Hello, in ubuntu 25.10 VMware, I am trying to create a zip file where the list of folders and files from find command are piped to 7zip to create a zip file. But, it just packs /home/azeem/Downloads/7z2600-linux-x64 directory instead find ./* -mindepth 1 -maxdepth 1 | "/home/azeem/Downloads/7z2600-linux-x64/7zz" a -tzip -mx=0 "/home/azeem/Downloads/7z2600-linux-x64/test_archive" How do I get the above to work and behave like find command + pipe + zip find ./* -mindepth 1 -maxdepth 1 | zip -@ -0 test_archive...
Hello, in linux I am trying to create a zip file where the contents of the find command get piped to 7zip but instead this command tries to zip the contents from the parent working directory instead of piping the list of filenames into 7zip find ./* -mindepth 1 -maxdepth 1 | "/home/azeem/Downloads/7z2600-linux-x64/7zz" a -tzip -mx=0 "/home/azeem/Downloads/7z2600-linux-x64/test_archive" How do I get the above to work and behave like find command + pipe + zip find ./* -mindepth 1 -maxdepth 1 | zip...
Hello, in linux I am trying to create a zip file where the contents of the find command get piped to 7zip but instead this command tries to zip the contents from the parent working directory instead of piping the list of filenames into 7zip find ./* -mindepth 1 -maxdepth 1 | "/home/azeem/Downloads/7z2600-linux-x64/7zz" a -tzip -mx=0 "/home/azeem/Downloads/7z2600-linux-x64/test_archive" How do I get the above to work and behave like find command + pipe + zip find ./* | zip -@ -0 test_archive ???
Hello, in linux I am trying to create a zip file where the contents of the find command get piped to 7zip but instead this command tries to zip the contents from the parent working directory instead of piping the list of filenames into 7zip find .-mindepth 1 -maxdepth 1 | "/home/azeem/Downloads/7z2600-linux-x64/7zz" a -tzip "/home/azeem/Downloads/7z2600-linux-x64/test_archive" How do I get this to work like find ./* zip -@ ???
Hello, I am linking this post I made from help section here https://sourceforge.net/p/sevenzip/discussion/45798/thread/568c2620dc/#92d5