diff options
Diffstat (limited to 'urlsave')
-rwxr-xr-x | urlsave | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/urlsave b/urlsave deleted file mode 100755 index e58245c..0000000 --- a/urlsave +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -# -# Save URL info in a file as a simple bookmarking service. -# - -# Parameters -CONFIG="$HOME/.custom/urlsave" - -# Load config -if [ -e "$CONFIG" ]; then - source $CONFIG -fi - -# Check -if [ -z "$URLFILE" ] || [ ! -e "$URLFILE" ]; then - URLFILE="/dev/stdout" -fi - -# Dispatch -echo "" >> $URLFILE -urlinfo $* >> $URLFILE |