PJSH

A perfectly justified shell for the modern age.

#!/bin/pjsh
->| find $PWD -name "*.toml" -type f
  | grep .toml
  | sort
  ;

PJSH is a shell that aims to make the shell easier and more predictable to use. The syntax is mostly kept from the POSIX Shell Specification, but legacy implementation details are removed in order to increase the readability and usability of shell scripts.

PJSH does not require heavy quoting around arguments as splitting is never done implicitly. If it looks like a word in code, it is also a word after expanding variables.

There is also support for multiline strings in which leading whitespace is trimmed in a sensible manner. This means that text indentation is not ruined in the same way as with the heredoc seen in other shells.

View PJSH on GitHub