Is it possible to run/evaluate a script file using fsh? I have an executable `test.fsh` with these contents: ``` #!/usr/bin/fsh : ll -la 1 ls ; ll ``` When I run in bash with `./test.fsh` it just opens the fsh shell without executing `ll`.
Is it possible to run/evaluate a script file using fsh? I have an executable
test.fshwith these contents:When I run in bash with
./test.fshit just opens the fsh shell without executingll.