it's a shell
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jordan Orelli 17d51617e0 ohhhhhhhh right backslashes on windows, shit 4 months ago
macros start lexin 1 year ago
src ohhhhhhhh right backslashes on windows, shit 4 months ago
.gitignore is this macro at all necessary 1 year ago
Cargo.lock just messin around now 1 year ago
Cargo.toml refactored some stuff 6 months ago
README.md document the semicolon 5 months ago

README.md

clyde

A command-line shell for Windows.

examples

In all examples, the Clyde prompt is written as follows:

Run a built-in command

Built-in commands are invoked by executing them with a bare string

c:\dev\clyde ▷ cd src
c:\dev\clyde\src ▷

Run an external command

External commands are invoked in the same way:

c:\dev\clyde ▷ git status
On branch main
Your branch is up to date with 'origin/main'.

nothing to commit, working tree clean

Run commands back to back

To run two commands back to back, separate them with a semicolon. Note that this interaction is entirely unconditional: the second command executes regardless of whether the first command succeeded or not.

c:\dev\clyde ▷ echo one; echo two
one
two