我怎麼能對下面的命令壓縮1.zip file.txt的我想的名字是ziped從file.txt的文件如何重定向輸入在cmd中
我試圖做拉鍊1應該採取重定向輸入。 zip < file.txt和它沒有工作,我在Windows下工作。
感謝
我怎麼能對下面的命令壓縮1.zip file.txt的我想的名字是ziped從file.txt的文件如何重定向輸入在cmd中
我試圖做拉鍊1應該採取重定向輸入。 zip < file.txt和它沒有工作,我在Windows下工作。
感謝
在zip中使用 - @選項。
型拉鍊 - @ 1.zip < file.txt的
從zip幫助通過鍵入拉鍊發現-h
Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly
Onno van der Linden and Kai Uwe Rommel. Type 'zip -L' for the software License.
Zip 2.1 (April 27th 1996). Usage:
zip [-options] [-b path] [-t mmddyy] [-n suffixes] [zipfile list] [-xi list]
The default action is to add or replace zipfile entries from list, which
can include the special name - to compress standard input.
If zipfile and list are omitted, zip compresses stdin to stdout.
-f freshen: only changed files -u update: only changed or new files
-d delete entries in zipfile -m move into zipfile (delete files)
-k force MSDOS (8+3) file names -g allow growing existing zipfile
-r recurse into directories -j junk (don't record) directory names
-0 store only -l convert LF to CR LF (-ll CR LF to LF)
-1 compress faster -9 compress better
-q quiet operation -v verbose operation/print version info
-c add one-line comments -z add zipfile comment
-b use "path" for temp file -t only do files after "mmddyy"
[email protected] read names from stdin -o make zipfile as old as latest entry
-x exclude the following names -i include only the following names
-F fix zipfile (-FF try harder) -D do not add directory entries
-A adjust self-extracting exe -J junk zip file prefix (unzipsfx)
-T test zipfile integrity -X eXclude eXtra file attributes
-$ include volume label -S include system and hidden files
-h show this help -n don't compress these suffixes
您可以使用FOR命令採取從file.txt的輸入,並在文件中的每一行運行命令。這不完全是你想要的,但它讓你更接近。
例如,
for /f %L in (file.txt) do echo %L
會響應該文件中的每一行,分別。
你可以使用它來構建一個命令行來完成你想要的任務。像這樣:
SETLOCAL ENABLEDELAYEDEXPANSION
set filelist=
for /F %%L IN (data.txt) do set filelist=!filelist! %%L
zip.exe zipfile.zip %filelist%
ENDLOCAL