mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-09 03:45:15 -05:00
12 lines
223 B
Bash
12 lines
223 B
Bash
#!/bin/sh
|
|
# Usage: ./download-and-extract.sh something https://example.com/something.tar.gz
|
|
|
|
archive=$1
|
|
url=$2
|
|
|
|
if [ ! -f $archive.tar.gz ]; then
|
|
wget -O $archive.tar.gz $url
|
|
fi
|
|
|
|
rm -r $archive
|
|
tar -xvzf $archive.tar.gz |