.dotfiles/.bin/source-remote-file

12 lines
216 B
Plaintext
Raw Normal View History

2022-10-17 16:49:58 +00:00
#!/usr/bin/env sh
2022-09-13 20:19:08 +00:00
base_path="$HOME/.cache/remote-sources"
mkdir -p "$base_path"
file_path="$base_path/$1"
if [ ! -f "$file_path" ]
then
echo "Installing file $1"
curl -Ls -o "$file_path" "$2"
fi
source $file_path