स्टड पर फ़ाइल को जिप करने से तर्क के रूप में दी गई फ़ाइल की तुलना में एक छोटा आउटपुट क्यों मिलता है?


13

जब मैं करता हूं:

# gzip -c foo > foo1.gz 
# gzip < foo > foo2.gz

foo2.gzअंत आकार से छोटा क्यों होता है foo1.gz?

जवाबों:


19

क्योंकि यह फ़ाइल नाम और टाइमस्टैम्प को सहेज रहा है ताकि आप इसे बाद में इसे डिकम्प्रेस करने के बाद दोनों को पुनर्स्थापित करने का प्रयास कर सकें। चूंकि fooको दिया जाता है gzipके माध्यम से <stdin>अपने दूसरे उदाहरण में, यह फ़ाइल नाम और टाइमस्टैम्प जानकारी एकत्र नहीं कर सकते हैं।

मैनपेज से:

   -n --no-name
          When compressing, do not save the original file name and time stamp by default. (The original name is always saved if the name had
          to  be truncated.) When decompressing, do not restore the original file name if present (remove only the gzip suffix from the com-
          pressed file name) and do not restore the original time stamp if present (copy it from the compressed file). This  option  is  the
          default when decompressing.

   -N --name
          When compressing, always save the original file name and time stamp; this is the default. When decompressing, restore the original
          file name and time stamp if present. This option is useful on systems which have a limit on file name  length  or  when  the  time
          stamp has been lost after a file transfer.

मैंने इस मुद्दे को यहाँ फिर से बनाया है:

[root@xxx601 ~]# cat /etc/fstab > file.txt
[root@xxx601 ~]# gzip < file.txt > file.txt.gz
[root@xxx601 ~]# gzip -c file.txt > file2.txt.gz
[root@xxx601 ~]# ll -h file*
-rw-r--r--. 1 root root  465 May 17 19:35 file2.txt.gz
-rw-r--r--. 1 root root 1.2K May 17 19:34 file.txt
-rw-r--r--. 1 root root  456 May 17 19:34 file.txt.gz

मेरे उदाहरण में, file.txt.gzआपके बराबर है foo2.gz-nविकल्प का उपयोग करते हुए इस व्यवहार को निष्क्रिय कर देता है जब अन्यथा यह जानकारी तक पहुंच जाएगा :

[root@xxx601 ~]# gzip -nc file.txt > file3.txt.gz
[root@xxx601 ~]# ll -h file*
-rw-r--r--. 1 root root  465 May 17 19:35 file2.txt.gz
-rw-r--r--. 1 root root  456 May 17 19:43 file3.txt.gz
-rw-r--r--. 1 root root 1.2K May 17 19:34 file.txt
-rw-r--r--. 1 root root  456 May 17 19:34 file.txt.gz

जैसा कि आप ऊपर देख सकते हैं, फ़ाइल आकार file.txtऔर file3.txtमैच के बाद से वे अब नाम और तिथि दोनों को छोड़ रहे हैं।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.