You are here:
» How Do I Extract Bz2 Files?
How do I extract bz2 files?
This Comment will be submitted for moderation and will not be accessible to other users until it has been approved.
I have a file in bz2 format as follows on my linux box:
drupal-date-9-may-2010.sql.bz2
How do I extract it?

1 year 39 weeks ago
Tags:
You can use the following shell command to extract:
This would also extract:
Here,
tar - Tape ARchiver
And the options:
x - extract
v - verbose output (lists all files as they are extracted)
j - deal with bzipped file
f - read from a file, rather than a tape device
"tar --help" gives more options and info.
Post Comment