Q. I've been doing some work updating files on my minecraft server and all the Y pressing for yes to replace existing files is annoying, especially since I still have a lot to go. So here's my question, how would the below be modified to unzip the file as it does now but append Y to all the replaces automatically ?
unzip dynmap-0.39-bin.zip
@Canidog: That did the trick, got all the inflating messages without the added replace etc messages !
unzip dynmap-0.39-bin.zip
@Canidog: That did the trick, got all the inflating messages without the added replace etc messages !
A. unzip -o dynmap-0.39-bin.zip
The -o switch enables forceful overwrite, which will overwrite existing files without prompt.
The -o switch enables forceful overwrite, which will overwrite existing files without prompt.
can any one tel how to unzip a zipped file in linux...?
Q.
A. To use unzip to extract all members of the archive letters.zip into the current directory and subdirectories below it, creating any subdirectories as necessary:
unzip letters
To extract all members of letters.zip into the current directory only:
unzip -j letters
To test letters.zip, printing only a summary message indicating whether the archive is OK or not:
unzip -tq letters
To test all zipfiles in the current directory, printing only the summaries:
unzip -tq \*.zip
unzip letters
To extract all members of letters.zip into the current directory only:
unzip -j letters
To test letters.zip, printing only a summary message indicating whether the archive is OK or not:
unzip -tq letters
To test all zipfiles in the current directory, printing only the summaries:
unzip -tq \*.zip
how do i unzip a tar.gz file on linux?
Q.
A. tar zxvf blah.tar.gz
Powered by Yahoo! Answers
No comments:
Post a Comment