summaryrefslogtreecommitdiff
path: root/scripts/feed.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/feed.in')
-rwxr-xr-xscripts/feed.in27
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/feed.in b/scripts/feed.in
new file mode 100755
index 0000000..dfa866d
--- /dev/null
+++ b/scripts/feed.in
@@ -0,0 +1,27 @@
+#!@GUILE@ \
+--no-auto-compile -e main -s
+!#
+
+;;; Guile Feed --- Feed command-line interface.
+;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
+;;;
+;;; This file is part of Guile Feed.
+;;;
+;;; Guile Feed is free software; you can redistribute it and/or modify
+;;; it under the terms of the GNU General Public License as published
+;;; by the Free Software Foundation; either version 3 of the License,
+;;; or (at your option) any later version.
+;;;
+;;; Guile Feed is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with Guile Feed. If not, see
+;;; <http://www.gnu.org/licenses/>.
+
+(define* (main #:optional (args (command-line)))
+ (let ((feed-main (module-ref (resolve-interface '(feed ui))
+ 'feed-main)))
+ (exit (apply feed-main args))))