How i can redirect input for following command zip 1.zip file.txt i want the names to be ziped be taken from the file.txt file
I tried to do zip 1.zip < file.txt and it didnt worked , i work under windows .
thanks
|
|
|
|
|
|
|
use the -@ option in zip. type zip -@ 1.zip < file.txt from the zip help found by typing zip -h
|
||
|
|
|
|
You can use a FOR command to take input from the file.txt, and run a command for each line in the file. This is not exactly what you want, but it gets you closer. For example,
will echo each line in the file, separately. You can use that to build a command line that will do the thing you want. like this:
|
||
|
|