123456789101112131415161718192021 |
- #!/bin/sh
- LC_ALL="en_US"
- export LC_ALL
- unset LANG
- unset LC_CTYPE
- exec guile -q -s "$0" "hello"
- !
- ;; Make sure our argument was suitable decoded.
- (exit (string=? (cadr (program-arguments)) "hello"))
- ;; Local Variables:
- ;; mode: scheme
- ;; coding: iso-8859-1
- ;; End:
|