/usr/lib/picolisp/bin/psh is in picolisp 17.12+20180218-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/usr/bin/picolisp /usr/lib/picolisp/lib.l
# 01feb18abu
# (c) Software Lab. Alexander Burger
(load "@lib/misc.l" "@lib/http.l")
(raw T)
(let Arg (opt)
(client "localhost"
(or
(format Arg)
(client "localhost" 80 (pack Arg "/!psh") (read)) )
(pack (opt) "!psh?" (pw) "&" (in '("tty") (line T)))
(ctty (read))
(line)
(line) ) )
(bye)
|