-
-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Definitely works in Bash and Zsh. Probably works in most other shells?
No, it does not work in any other shells; due to:
paste -d ' ' <(for _ in
$(seq 1 "$ (wc -l < "$intermediate_tmpfile")"); do echo "$myself"; done) "$intermediate_tmpfile" > "$mailmap_tmpfile"
<(…)
(Process Substitution) is so-called bashism – it’s not specified by POSIX Shell Command Language and (as I know) the only shells that implements it is Bash and ZSH. ash, dash, ksh, … or any other POSIX-compatible shell does not implement this syntax.
This is the only problematic part, the rest of the script is POSIX-sh compliant.
Metadata
Metadata
Assignees
Labels
No labels