Skip to content

Commit 25751e1

Browse files
committed
Add description
1 parent 6fcd3bb commit 25751e1

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

compiled_starters/java/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
This is a starting point for Java solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_Add a description of your course here_
6+
_In this challenge, you'll build your own POSIX compliant shell that's capable
7+
of interpreting shell commands, running external programs and builtin commands
8+
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9+
parsing, REPLs, builtin commands, and more._
710

811
**Note**: If you're viewing this repo on GitHub, head over to
912
[codecrafters.io](https://codecrafters.io) to try the challenge.

solutions/java/01-oo8/code/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
This is a starting point for Java solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_Add a description of your course here_
6+
_In this challenge, you'll build your own POSIX compliant shell that's capable
7+
of interpreting shell commands, running external programs and builtin commands
8+
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9+
parsing, REPLs, builtin commands, and more._
710

811
**Note**: If you're viewing this repo on GitHub, head over to
912
[codecrafters.io](https://codecrafters.io) to try the challenge.

starter_templates/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This is a starting point for {{language_name}} solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_Add a description of your course here_
6+
_In this challenge, you'll build your own POSIX compliant shell that's capable of interpreting shell commands, running external programs and builtin commands like cd, pwd, echo and more. Along the way, you'll learn about shell command parsing, REPLs, builtin commands, and more._
77

88
**Note**: If you're viewing this repo on GitHub, head over to [codecrafters.io](https://codecrafters.io) to try the challenge.
99

@@ -12,7 +12,7 @@ _Add a description of your course here_
1212
The entry point for your `shell` implementation is in `{{ user_editable_file }}`. Study and uncomment the relevant code, and
1313
push your changes to pass the first stage:
1414

15-
``` sh
15+
```sh
1616
git add .
1717
git commit -m "pass 1st stage" # any msg
1818
git push origin master

0 commit comments

Comments
 (0)