Advertisement
Guest User

Untitled

a guest
Oct 16th, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. cbell@circe:~/tmp$ touch file
  2. cbell@circe:~/tmp$ ls -l
  3. total 0
  4. -rw-r--r-- 1 cbell cbell 0 Oct 16 19:10 file
  5. cbell@circe:~/tmp$ chmod 600 file
  6. cbell@circe:~/tmp$ ls -l
  7. total 0
  8. -rw------- 1 cbell cbell 0 Oct 16 19:10 file
  9. cbell@circe:~/tmp$ tar cvpf file.tar file
  10. file
  11. cbell@circe:~/tmp$ ls -l
  12. total 12
  13. -rw------- 1 cbell cbell 0 Oct 16 19:10 file
  14. -rw-r--r-- 1 cbell cbell 10240 Oct 16 19:11 file.tar
  15. cbell@circe:~/tmp$
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement