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.
33 lines
491 B
Markdown
33 lines
491 B
Markdown
# clyde
|
|
|
|
A command-line shell for Windows.
|
|
|
|
## examples
|
|
|
|
In all examples, the Clyde prompt is written as follows:
|
|
|
|
```
|
|
▷
|
|
```
|
|
|
|
1. 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 ▷
|
|
```
|
|
|
|
2. 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
|
|
```
|