Skip to content

Instantly share code, notes, and snippets.

@morgan9e
Created March 4, 2026 07:57
Show Gist options
  • Select an option

  • Save morgan9e/f36fb7a4b1be06897de478ecca41239b to your computer and use it in GitHub Desktop.

Select an option

Save morgan9e/f36fb7a4b1be06897de478ecca41239b to your computer and use it in GitHub Desktop.
Not unzip dumping all files to cwd
#!/bin/bash
if [ ! -f $1 ]; then echo No file provided.; exit 1; fi
F=${1%.*};
if [ -d "$F" ]; then echo Already Exists.; exit; fi
mkdir "$F";
unzip -d "$F" "$1";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment