How can I reliably get the script name in Chicken Scheme?

It seems that -ss eats up the script name, so it's not visible unless I use dot slash to run my scripts.

scriptedmain.scm:

#!/usr/bin/env csi -q

(display (command-line-arguments))
(display "\n")
(exit)

Trace:

$ ./scriptedmain.scm 
(-q ./scriptedmain.scm)
wonko:Desktop andrew$ csi -ss scriptedmain.scm 
()
link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

This is a late response, so may not be of use to the original poster. But to any others who may come across this question, the simple answer is to use the parameter:

(program-name)

This should return the correct name for all situations. Docs here.

link|improve this answer
Better late than never. Thanks dude! – mcandre Sep 12 '11 at 4:07
My latest version works for all cases except compiled. For some reason, it just sits there. – mcandre Sep 12 '11 at 4:11
@mcandre : Not sure what you mean by "all cases except compiled". I looked at your example scriptedmain.scm below - with program-name, and it works as an interpreted script, or as a compiled native executable. BTW, I wouldn't bother with that scaffolding (bash -> csi). Its not really needed#!/usr/bin/env chicken-scheme #!/usr/bin/csi -s – Imran Rafique Sep 12 '11 at 7:02
BTW, I wouldn't bother with that scaffolding (bash -> csi). Its not really needed. Put this in your ~/.csirc: (register-feature! 'in-repl) Start your scripts with either: #!/usr/bin/env chicken-scheme #!/usr/bin/csi -s And end them with the following block: (cond-expand (in-repl ; do something here) (else (main (command-line-arguments)))) Now your code will just work, whether you load the file into the repl and interactively develop, execute the file as a script through the interpreter, or compile it into a native executable and run it. – Imran Rafique Sep 12 '11 at 7:10
Sorry about the code formatting. I guess the comments don't respect inline code :( – Imran Rafique Sep 12 '11 at 7:11
show 1 more comment
feedback

(argv) should do the job. Example:

#!/usr/local/bin/csi -script

(display (argv)) (newline) (exit)

prints (/usr/local/bin/csi -script ./test.scm)

link|improve this answer
Almost! You have to add code for the special case where the script is compiled with csc; then the program is (list-ref (argv) 0). – mcandre Mar 5 '11 at 21:01
With "script" i mean "not compiled". There are other solutions to distinguish between interpreted and compiled programs. – knivil Mar 6 '11 at 13:02
feedback

scriptedmain.scm will run (main) and print the program name in the following cases:

Run from the interpreter:

csi -ss scriptedmain.scm

Run from the interpreter using shebangs:

./scriptedmain.scm

Compiled:

csc -o scriptedmain scriptedmain.scm
./scriptedmain

Added to GitHub.

#!/bin/sh
#|
exec csi -ss $0 ${1+"$@"}
exit
|#

(define (main)
    (display (format "Program: ~a\n" (program-name)))
    (exit))

(if (not (equal? (program-name) "csi"))
    (main))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.