Skip to content

Instantly share code, notes, and snippets.

@mbround18
Created November 10, 2016 22:10
Show Gist options
  • Save mbround18/b71ddac78253cfd8aeccb4217249f7fd to your computer and use it in GitHub Desktop.
Save mbround18/b71ddac78253cfd8aeccb4217249f7fd to your computer and use it in GitHub Desktop.
7z undo
function 7zundo() {
7z l $1 | awk ' {print $6} ' | awk '
function basename(file) {
sub(".*/", "", file)
return file
}
{print basename($1)} ' | xargs rm -rf
}
function 7zundo
7z l $argv | awk ' {print $6} ' | awk '
function basename(file) {
sub(".*/", "", file)
return file
}
{print basename($1)} ' | xargs rm -rf
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment