You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/the_terminal/creating_files.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Creating Files
2
2
3
-
To create a blank file you can use the `touch`[^no_clue] command.
3
+
To create a blank file you can use the `touch`[^why] command.
4
4
5
5
```bash
6
6
$ touch hello.txt
@@ -12,8 +12,10 @@ using a program called a "text editor."
12
12
There are some text editors, like [`vim`](https://www.vim.org/), which run entirely
13
13
inside the terminal.[^diehard]
14
14
15
-
One of the more popular ones at time of writing is [Visual Studio Code](https://code.visualstudio.com/). If you weren't otherwise shown a different option, that is a decent default. Install it and then you can use it to create and edit files.
15
+
At the start of this book I showed you [VSCodium](https://vscodium.com/). If you weren't otherwise shown a different option, that is a decent default. You can use it to create and edit files.
16
+
17
+
[^why]: This is called `touch` because it will "touch" a file and update its "last updated timestamp" but change nothing else.
16
18
17
-
[^no_clue]: I have no clue why this is called `touch`.
18
19
[^diehard]: These have their die hard supporters. The lunatics.
20
+
19
21
[^thisbook]: This book has been written inside Visual Studio Code.
0 commit comments