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