User Tools

Site Tools

tools:bash:files-archives

This is an old revision of the document!


This article is Part 5 in a series of cheat-sheets on the command line shell, bash. (Previous Page | Next Page)

bash: Managing Files & Archives

Modifying Files

Append whatever to the end of filename:

$ echo 'whatever' >> filename

File Archives

Tar

Creates .tar archive of specified directory(s):

$ tar -cvf filename.tar folder1/ folder2/

Show contents of archive:

$ tar -tf filename.tar

Extract contents of archive to pwd:

$ tar -xvf filename.tar

Extract contents of archive to specific folder:

$ tar -xvf filename.tar -C /destination/directory/

Other Tar Flags

  • -z For working with tar.gz files
  • -j For working with tar.bz2 files

Zip

Puts all files from pwd into data.zip:

$ zip data *

Zips up entire directory and subdirectories:

$ zip -r data *

Unzip archive into pwd:

$ unzip data.zip

Unzip archive into specific folder:

$ unzip data.zip -d /destination/directory

Test archive for validity:

$ unzip -tq data.zip

File Transfer

lftp and ftp

CLI FTP clients.


tools/bash/files-archives.1716178337.txt.gz · Last modified: 2024/08/06 05:54 (external edit)

Find this page online at: https://bestpoint.institute/tools/bash/files-archives