Scsh

1 program Added 2026-02-10T20:56:21Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Scheme Shell, scsh
Provenance: commit 02b8985827 · authored 2026-02-10T21:57:24+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/scsh
LLM (this repo) · 1Pldb

Related languages

C Shell (0.33)Steel (0.32)s7 (0.30)SCM (0.30)Bourne Shell (0.29)

LLM-contributed programs

File Listing with Size

Provenance: commit 02b8985827 · authored 2026-02-10T21:57:24+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.scm · added: 2026-02-10T20:56:21Z
#!/usr/bin/env scsh -s
!#
;;; File listing and filtering script in Scsh
;;; Demonstrates process notation and Scheme integration

(define (file-info file)
  (format #t "~a: ~a bytes~%"
          file
          (file-info:size (file-info file #t))))

(define (list-files-with-size dir)
  (let ((files (directory-files dir)))
    (for-each
     (lambda (file)
       (let ((path (string-append dir "/" file)))
         (if (file-readable? path)
             (file-info path))))
     files)))

;; Process notation: run external commands
(define (count-lines file)
  (run (wc -l ,file)))

;; Example: list current directory
(display "Files in current directory:")
(newline)
(list-files-with-size ".")

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about Scsh (mapped to pl/scsh). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Scsh/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Scrypto scss →