mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-14 21:35:39 +00:00
14 lines
272 B
Bash
Executable file
14 lines
272 B
Bash
Executable file
#/bins/sh
|
|
set -e
|
|
|
|
version="$1"
|
|
|
|
if [ -z "$version" ]; then
|
|
echo "Usage: $0 version"
|
|
exit 1
|
|
fi
|
|
|
|
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
|