about summary refs log tree commit diff stats
path: root/runsfeed
diff options
context:
space:
mode:
Diffstat (limited to 'runsfeed')
-rwxr-xr-xrunsfeed5
1 files changed, 4 insertions, 1 deletions
diff --git a/runsfeed b/runsfeed index 75b141b..3fc6ee6 100755 --- a/runsfeed +++ b/runsfeed
@@ -52,13 +52,16 @@ main() {
52 log Done. 52 log Done.
53} 53}
54 54
55update_urls() {
56runcmd() { 55runcmd() {
57 cmd="$(command -v "$1" || echo "./$1")" 56 cmd="$(command -v "$1" || echo "./$1")"
58 shift 57 shift
59 "$cmd" "$@" 58 "$cmd" "$@"
60} 59}
61 60
61remove_unsubs() {
62 runcmd sfeed_unsubscribe.sh "$@"
63}
64
62update_urls() { 65update_urls() {
63 runcmd sfeed_update_urls.sh "$@" 66 runcmd sfeed_update_urls.sh "$@"
64} 67}