How do I remove the full path when doing a tar.gz compression?
tar -czf /a/b/c.tar.gz -C /e/f/g .
The -C
option makes tar
change the working directory, so you only need to add .
.
See: Changing the Working Directory – GNU tar
manual
tar -czf /a/b/c.tar.gz -C /e/f/g .
The -C
option makes tar
change the working directory, so you only need to add .
.
See: Changing the Working Directory – GNU tar
manual