From e851401694daacaf1aba2c87ed557e5dbf00af02 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 20 Aug 2024 20:44:34 -0300 Subject: Move scripts to other repositories --- urlsave | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 urlsave (limited to 'urlsave') 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 -- cgit v1.2.3