LINUX.ORG.RU

запустить скрипт на lisp в bash

 


0

1

Всем удачи.... скажите, пожалуйста, что не правильно?

#! /bin/bash
/usr/bin/sbcl
(message "Это сообщение появится в эхо-области!")
th@debian:~$ ls -l skr
-rwxr-xr-x 1 th th 107 апр 30 14:25 skr
th@debian:~$ 
th@debian:~$ ./skr
This is SBCL 1.3.14.debian, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.


Ответ на: комментарий от Deleted
#!/usr/bin/sbcl
(message "Это сообщение появится в эхо-области!")
th@debian:~$ ls -l skr
-rwxr-xr-x 1 th th 97 апр 30 18:21 skr
th@debian:~$ 
th@debian:~$ ./skr
This is SBCL 1.3.14.debian, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.
* th@debian:~$ 
thakur
() автор топика
Ответ на: ! от anymouze
#!/usr/local/bin/sbcl --script
(write-line "Hello, World!")
th@debian:~$ chmod ugo+x skr 
th@debian:~$ ./skr
bash: ./skr: /usr/local/bin/sbcl: неверный интерпретатор: Нет такого файла или каталога
th@debian:~$ 
thakur
() автор топика
Ответ на: комментарий от thakur
#!/usr/bin/sbcl --script
(write-line "Hello, World!")

тоже не работает?

P.S. Ну и написать им багрепорт — пусть исправят свою документацию.

anymouze ★★
()
Последнее исправление: anymouze (всего исправлений: 1)
Ответ на: комментарий от EXL
th@debian:~$ cat skr
#!/usr/bin/env sbcl --script
(write-line "Hello, World!")
th@debian:~$ ls -l skr
-rwxr-xr-x 1 th th 58 апр 30 21:24 skr
th@debian:~$ ./skr
/usr/bin/env: «sbcl --script»: Нет такого файла или каталога
th@debian:~$ 
thakur
() автор топика
Ответ на: комментарий от Deleted

спасибо большое от упототых первый раз делал без --script и не прокатило

th@debian:~$ cat skr
#!/usr/bin/sbcl --script
(write-line "Hello, World!")
th@debian:~$ ls -l skr
-rwxr-xr-x 1 th th 54 апр 30 21:30 skr
th@debian:~$ ./skr
Hello, World!
th@debian:~$ 

thakur
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.