You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
youtube-dl/update_latest.sh

10 lines
207 B
Bash

#/bins/sh
set -e
version="$1"
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