Guest User

Untitled

a guest
Apr 8th, 2016
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.81 KB | None | 0 0
  1. cc@cc> echo 'Hello world!' >> test
  2. cc@cc> file test  
  3. test: ASCII text
  4. cc@cc> mv test test.1.1
  5. cc@cc> file test.1.1
  6. test.1.1: ASCII text
  7. cc@cc> mv test.1.1 test.1.1.gz  
  8. cc@cc> file test.1.1.gz
  9. test.1.1.gz: ASCII text
  10. cc@cc> mv test.1.1.gz t-est
  11. cc@cc> gzip test  
  12. cc@cc> file test.gz  
  13. test.gz: gzip compressed data, was "test", last modified: Sat Apr  9 02:18:12 2016, from Unix
  14. cc@cc> mv test.gz test.1gz
  15. cc@cc> file test.1gz
  16. test.1gz: gzip compressed data, was "test", last modified: Sat Apr  9 02:18:12 2016, from Unix
  17. cc@cc> mv test.1gz test.1.gz
  18. cc@cc> file test.1.gz
  19. test.1.gz: gzip compressed data, was "test", last modified: Sat Apr  9 02:18:12 2016, from Unix
  20. cc@cc> mv test.1.gz test
  21. cc@cc> file test  
  22. test: gzip compressed data, was "test", last modified: Sat Apr  9 02:18:12 2016, from Unix
Add Comment
Please, Sign In to add comment