Skip to content

Instantly share code, notes, and snippets.

@higebu
Created July 1, 2020 03:54
Show Gist options
  • Save higebu/c566205d528e57957549c672942140b0 to your computer and use it in GitHub Desktop.
Save higebu/c566205d528e57957549c672942140b0 to your computer and use it in GitHub Desktop.
Download and unzip 3GPP documents
#!/bin/bash
wget -mc -nH --cut-dirs=2 ftp://ftp.3gpp.org/Specs/latest/Rel-16
#!/bin/bash
IFS=$'\n'
files=$(find . -name '*.zip')
for i in $files; do
p=$(realpath $i)
d=$(dirname $p)
unzip -d $d $p
q=$(printf '%q' "$p")
rm $q
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment