Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions episodes/03-create.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ expected and can even result in data loss.
If you need to refer to names of files or directories that have spaces
or other special characters, you should surround the name in quotes (`""`).

Whether or not your Bash shell is case-sensitive is normally determined by the underlying operating system. In most implementations of Bash it is case sensitive. On MacOS, however, it is not case sensitive.

It can be a good practice to use all lowercase for files and directories, but this is not a rule; you are likely to see uppercase used in practice. This effect is negligible if the letter isn't the first letter in the name, so it's not an issue if you use naming standards such as camelCase.



::::::::::::::::::::::::::::::::::::::::::::::::::

### Create a text file
Expand Down