mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
9 lines
125 B
Plaintext
Executable File
9 lines
125 B
Plaintext
Executable File
#/usr/bin/bash
|
|
|
|
if [ -z "$DOWNLOADS" ];then
|
|
echo "DOWNLOADS env variable not set"
|
|
exit 1
|
|
fi
|
|
|
|
echo "$(newest $DOWNLOADS)"
|