Created SC3001 (markdown)

Vidar Holen
2020-09-01 17:05:12 -07:00
parent 6c9fa1416b
commit af648d27f1

56
SC3001.md Normal file

@@ -0,0 +1,56 @@
## In POSIX sh, process substitution is undefined.
(or "In dash, ... is not supported." when using `dash`)
### Problematic code:
```sh
#!/bin/sh
while IFS= read -r n
do
sum=$((sum+n))
done < <(program)
```
### Correct code:
The easiest fix is to switch to a shell that does support process substitution, by changing the shebang to `#!/bin/bash` or `ksh`.
```sh
#!/bin/bash
while IFS= read -r n
do
sum=$((sum+n))
done < <(program)
```
Alternatively, process substitution can often be replaced with temporary files:
```sh
#!/bin/sh
tmp="$(mktemp)"
program > "$tmp"
while IFS= read -r n
do
sum=$((sum+n))
done < "$tmp"
rm "$tmp"
```
If streaming is important, the temporary file can be a named pipe, and the producer or consumer can be run as a background job.
### Rationale:
Process substitution is a ksh and bash extension. It does not work in sh or dash scripts.
### Exceptions:
If you only intend to target shells that supports this feature, you can change
the shebang to a shell that guarantees support, or [[ignore]] this warning.
You can use `# shellcheck disable=SC3000-SC4000` to ignore all such compatibility
warnings.
### Related resources:
* Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc!