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/scshRelated languages
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
#!/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.)