mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-02 16:37:59 +09:00
17 lines
307 B
Bash
Executable File
17 lines
307 B
Bash
Executable File
#/bins/sh
|
|
set -e
|
|
|
|
version="$1"
|
|
|
|
if [ -z "$version" ]; then
|
|
echo "Usage: $0 version"
|
|
exit 1
|
|
fi
|
|
|
|
cd "$(dirname $(readlink -f $0))"
|
|
|
|
ln -sf ../downloads/$version latest/directory
|
|
for f in $(ls "downloads/$version/"); do \
|
|
ln -sf "../downloads/$version/$f" latest/$(echo $f | sed -e "s@-$version@@")
|
|
done
|