newLISP Fan Club

Forum => newLISP in the real world => Topic started by: dexter on November 27, 2014, 04:47:45 AM

Title: newlisp main-args not to execute
Post by: dexter on November 27, 2014, 04:47:45 AM
I recently met a "problem"



I wrote a newlisp file ,let's say, test1.lsp



then I want the test1.lsp to deal with files in the (main-args) , like


newlisp test1.lsp xxxx.file

In my mind, I thought  newlisp and test1.lsp are together like one binary file

but then I found out , the command "newlisp" will also try to run xxxx.file whatever it is,just a file



I think there is no method can stop this behavior ,right?



so maybe newlisp can have a command line argument,like -f ? to seprate the files need to be executed or just use them as "string argments" ?
Title: Re: newlisp main-args not to execute
Post by: xytroxon on November 27, 2014, 08:08:11 AM
Just add the (exit) command to the end of your test1.lsp file to prevent the further loading of files as code...



This feature is so that any modules (that don't have the exit command) can be loaded ahead of your final code file...



-- xytroxon
Title: Re: newlisp main-args not to execute
Post by: mark5009 on November 27, 2014, 06:04:12 PM
I generally just use the #! syntax



$ cat foo.lsp
#!/usr/bin/newlisp

(println (main-args))
(exit)

$ chmod 755 foo.lsp    # make sure foo.lsp is executable
$ ./foo.lsp xxxx.file
("/usr/bin/newlisp" "./foo.lsp" "xxxx.file")


Hope this helps.



 .. m.
Title: Re: newlisp main-args not to execute
Post by: dexter on November 30, 2014, 07:49:31 PM
Oh yeah



Thanks to you all, it works now



:)
Title: Re: newlisp main-args not to execute
Post by: rrq on December 01, 2014, 01:37:06 PM
Use (reset) at the end of the script rather than (exit) If you want to enter interactive mode at that point.