guile-pastebin/scripts/pastebin

pastebin

1
#!/usr/bin/env sh
2
exec guile -s "$0" "$@"
3
!#
4
5
;;; SPDX-FileCopyrightText: 2025 Evgeny Pisemsky <mail@pisemsky.site>
6
;;;
7
;;; SPDX-License-Identifier: GPL-3.0-only
8
9
(use-modules (pastebin main))
10
11
(run-pastebin (command-line))
12
13
;; Local Variables:
14
;; mode: scheme
15
;; End:
16