Enable using of #[expr] syntax in conditionals
[guile-bash.git] / run-scm.in
blob69037effb6ada74bee5f7cff143b46af50819068
1 #!/bin/bash
2 set -e
3 enable -f @libdir@/libguile-bash.so scm
5 tmpfile=`mktemp`
6 cat << EOF > "$tmpfile"
7 (use-modules (gnu bash))
8 EOF
10 scm "$tmpfile"
11 rm -f "$tmpfile"
13 scm $@