command3.scm 349 B

12345678
  1. #!/usr/bin/env kawa
  2. ;; Kawa-options: %F "a b" c
  3. (format #t "~w~%" (command-line))
  4. ;; The reason for the '[^ ]*' in the pattern is to make sur we
  5. ;; only have the fielname in (car (command-line)) - because of the #! above.
  6. ;; Assumed filename (and specifically $srcdir) does not contain spaces.
  7. ;; Output-pattern: [(]"[^ ]*command3.scm" "a b" "c"[)]