aboutsummaryrefslogtreecommitdiff
path: root/sbodl
diff options
context:
space:
mode:
Diffstat (limited to 'sbodl')
-rwxr-xr-xsbodl6
1 files changed, 5 insertions, 1 deletions
diff --git a/sbodl b/sbodl
index 43eacde..42623c2 100755
--- a/sbodl
+++ b/sbodl
@@ -90,7 +90,11 @@ for dl in $DL; do
[ "$FORCEDL" = "yes" ] && rm -f "$FILE"
- if [ -e "$FILE" ]; then
+ if [ -f "$FILE" -a ! -L "$FILE" ]; then
+ # file exists and is a regular file, cache it
+ mv -b "$FILE" "$CACHEDIR"
+ ln -s "$CACHEDIR/$FILE" "$FILE"
+ elif [ -e "$FILE" ]; then
# don't do anything
:
elif [ "$FORCEDL" != "yes" ] && [ -e "$CACHEDIR/$FILE" ]; then