Skip Navigation

How to write a 'tar' command

146

You're viewing a single thread.

146 comments
  • Or just use long-forms like

    tar --create --file pics.tar ./pics
    

    instead of

    tar -cf pics.tar ./pics
    

    or

    tar --extract --file pics.tar```
    instead of
    

    tar -xf pics.tar

    
    which is honestly way easier to remember... \^\^
146 comments