More flashcards.

pull/1/head
Joshua Potter 2024-02-01 15:00:26 -07:00
parent b2578161c4
commit 0ee310216f
3 changed files with 4 additions and 4 deletions

View File

@ -64,13 +64,13 @@
"daily/2024-01-31.md": "72e343cef8d56e169cac7b360a88fcf0",
"posix/index.md": "f7b1ae55f8f5e8f50f89738b1aca9111",
"posix/signals.md": "2120ddd933fc0d57abb93c33f639afd8",
"gawk.md": "c0cf6decdf02f5513e386525b02bdf58",
"gawk.md": "4517acfbf4e186e8cc66a9002fbad73f",
"bash/index.md": "3b5296277f095acdf16655adcdf524af",
"bash/shebang.md": "ad178efeb4a05190b80b5df108c175c7",
"bash/robustness.md": "de97cd77aae047b5eea27440b43c9c42",
"journal/2024-02-01.md": "f4cc061bfc8e41ce15ae9a354c65ffe9",
"journal/2024-01-31.md": "7c7fbfccabc316f9e676826bf8dfe970",
"bash/quoting.md": "8086c0a576f30d77248faac16a4be79e"
"bash/quoting.md": "b1d8869a91001f8b22f0cdc54d806f61"
},
"fields_dict": {
"Basic": [

View File

@ -32,7 +32,7 @@ END%%
%%ANKI
Basic
What is wrong with the following command?
Why does the following not work correctly?
```bash
$ # -F specifies the field separator
$ awk -F"" 'program' files

View File

@ -38,7 +38,7 @@ END%%
## Setup
Robbins[^robbins] suggests executing command `set +H` on [[bash]] startup to disable [[C]] shell-style command history.
Robbins suggests executing command `set +H` on [[bash]] startup to disable [[C]] shell-style command history.
## Usage