You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
487 B
Plaintext

# dar
# (disk archive), command-line archiving tool intended as a replacement for tar
# Create an archive of everything below source_dir
dar -R source_dir -c archive
# Extract an entire archive to a destination
dar -x archive dest_dir
# List the files in an archive
dar -l archive
# Extract a specific file from an archive into the
# current directory
dar -x archive -g file
# multiple files
dar -x archive -g file1 -g file2 -g file3
# For troubleshooting:
# --dry-run
# --verbose