Skip to content

Commit c3a3b87

Browse files
committed
readme: update bash scripts in readme for easier copy/paste
1 parent 52c9b55 commit c3a3b87

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

c-sharp/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44

55
1. Open a new terminal and navigate to this directory.
66
```bash
7-
/workspaces/language-workbench (main) $ cd c-sharp
8-
/workspaces/language-workbench/c-sharp (main) $
7+
cd c-sharp
98
```
109
2. Run the app using the `dotnet run` command.
1110
```bash
12-
/workspaces/language-workbench/c-sharp (main) $ dotnet run
11+
dotnet run
1312
```

java/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44

55
1. Open a new terminal and navigate to this directory.
66
```bash
7-
/workspaces/language-workbench (main) $ cd java
8-
/workspaces/language-workbench/java (main) $
7+
cd java
98
```
109
2. Execute `./gradlew run` to run the main application.
1110
```bash
12-
/workspaces/language-workbench/java (main) $ ./gradlew run
11+
./gradlew run
1312
```
1413
3. Execute `./gradlew test` to run the tests.
1514
```bash
16-
/workspaces/language-workbench/java (main) $ ./gradlew test
15+
./gradlew test
1716
```

python/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44

55
1. Open a new terminal and navigate to this directory.
66
```bash
7-
/workspaces/language-workbench (main) $ cd python
8-
/workspaces/language-workbench/python (main) $
7+
cd python
98
```
109
2. Execute `python main.py` to run the main application.
1110
```bash
12-
/workspaces/language-workbench/python (main) $ python main.py
11+
python main.py
1312
```

typescript/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@
44

55
1. Open a new terminal and navigate to this directory.
66
```bash
7-
/workspaces/language-workbench (main) $ cd typescript
8-
/workspaces/language-workbench/typescript (main) $
7+
d typescript
98
```
109
2. Install node dependencies using `pnpm`.
1110
```bash
12-
/workspaces/language-workbench/typescript (main) $ pnpm install
11+
pnpm install
1312
```
1413
3. Run the `dev` script.
1514
```bash
16-
/workspaces/language-workbench/typescript (main) $ pnpm run dev
15+
pnpm run dev
1716
```
1817
4. When done, press `Ctrl-C` in the terminal to exit.

0 commit comments

Comments
 (0)