[ prog / sol / mona ]

prog


[Challenge] Guile scsh porting

9 2020-06-25 16:20

>>8
Flip through the manual: https://scsh.net/docu/html/man.html

I think the most important is the process notation. Here's an example from the manual:

(run (| (delatex)
        (begin ((char-filter char-downcase))) ; tr A-Z a-z
        (spell)
        (sort)
        (uniq))
     (< scsh.tex)
     (> spell-errors.txt))

The begin is Scheme, the rest are shell commands.

12


VIP:

do not edit these