Skip to content

Latest commit

 

History

History
executable file
·
15 lines (10 loc) · 341 Bytes

commands.md

File metadata and controls

executable file
·
15 lines (10 loc) · 341 Bytes

My usually command list

copy files from server using scp

scp user@host:/path/from /path/to

compress an entire directory or file(tar.gz)

  • tar.gz tar -czvf archivename.tar.gz /path/to/directory [other files]
    • c - create archive
    • z - zip with gzip
    • v - verbose
    • f - allow filename for archive