Zahlen-Spiel...[ReKoRd B!tTe]-Wetten Dass? (6. Edition)

Status
Not open for further replies.
btw hab ich hier schon son halbes cheat tool, das mir anzeigt, wie lange die informationen zu mir unterwegs sind, wenn ich ne aktion im browser tätige...
 
If the file list is specified as -@, [Not on MacOS] zip takes the list of input files from standard input.
Under UNIX, this option can be used to powerful effect in conjunction with the find(1) command. For exam‐
ple, to archive all the C source files in the current directory and its subdirectories:

find . -name "*.[ch]" -print | zip source -@

(note that the pattern "*.[ch]" must be quoted to keep the shell from expanding it). zip will also accept
a single dash ("-") as the zip file name, in which case it will write the zip file to standard output,
allowing the output to be piped to another program. For example:

zip -r - . | dd of=/dev/nrst0 obs=16k

would write the zip output directly to a tape with the specified block size for the purpose of backing up
the current directory.

zip also accepts a single dash ("-") as the name of a file to be compressed, in which case it will read
the file from standard input, allowing zip to take input from another program. For example:

tar cf - . | zip backup -

would compress the output of the tar command for the purpose of backing up the current directory. This
generally produces better compression than the previous example using the -r option, because zip can take
advantage of redundancy between files. The backup can be restored using the command

unzip -p backup | tar xf -
 
with PKUNZIP under MSDOS which cannot handle certain names such as those
with two dots.

-l Translate the Unix end-of-line character LF into the MSDOS convention CR LF. This option should not
be used on binary files. This option can be used on Unix if the zip file is intended for PKUNZIP
under MSDOS. If the input files already contain CR LF, this option adds an extra CR. This ensures
that unzip -a on Unix will get back an exact copy of the original file, to undo the effect of zip
-l. See the note on binary detection for -ll below.

-ll Translate the MSDOS end-of-line CR LF into Unix LF. This option should not be used on binary files
and a warning will be issued when a file is converted that later is detected to be binary. This
option can be used on MSDOS if the zip file is intended for unzip under Unix.

In Zip 2.31 and later, binary detection has been changed from a simple percentage of binary charac‐
ters being considered binary
 
dh. wenn da steht noch 5 sekunden warten und im tool sind 2,5 sekunden vergangen, weis ich, dass ich nach 2,5 sek klicken darf...
 
If the file list is specified as -@, [Not on MacOS] zip takes the list of input files from standard input.
Under UNIX, this option can be used to powerful effect in conjunction with the find(1) command. For exam‐
ple, to archive all the C source files in the current directory and its subdirectories:

find . -name "*.[ch]" -print | zip source -@

(note that the pattern "*.[ch]" must be quoted to keep the shell from expanding it). zip will also accept
a single dash ("-") as the zip file name, in which case it will write the zip file to standard output,
allowing the output to be piped to another program. For example:

zip -r - . | dd of=/dev/nrst0 obs=16k

would write the zip output directly to a tape with the specified block size for the purpose of backing up
the current directory.

zip also accepts a single dash ("-") as the name of a file to be compressed, in which case it will read
the file from standard input, allowing zip to take input from another program. For example:

tar cf - . | zip backup -

would compress the output of the tar command for the purpose of backing up the current directory. This
generally produces better compression than the previous example using the -r option, because zip can take
advantage of redundancy between files. The backup can be restored using the command

unzip -p backup | tar xf -
ahja... irgendne linuxdistribution?
 
Status
Not open for further replies.
Back
Top