sgsh

1 program Added 2026-03-16T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Scatter-Gather Shell, sgsh shell
Provenance: commit 63d3332513 · authored 2026-03-16T23:54:59+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Scsh (0.27)Yash (0.27)Zsh (0.21)csh (0.20)Scyther (0.20)

LLM-contributed programs

Parallel Word Frequency Analysis

Provenance: commit 63d3332513 · authored 2026-03-16T23:54:59+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.sgsh · license: Apache-2.0 · added: 2026-03-16T10:00:00Z
#!/usr/local/bin/sgsh

# Parallel word frequency analysis using scatter-gather pipeline
# Split input stream to multiple processing branches simultaneously

<"$1" tee |{
	-| tr -cs '[:alpha:]' '\n' | tr '[:upper:]' '[:lower:]' | sort | uniq -c | sort -rn | head -20 |-
	-| wc -l | sed 's/^/Lines: /' |-
	-| wc -w | sed 's/^/Words: /' |-
|}

Contribute — propose a file extension

Tell us where to find evidence about sgsh (mapped to pl/sgsh). 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/sgsh/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← SGScript sh →