Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix create_shared() to be compatible with other shells (e.g. zsh)
Addresses issue #18. Diagnosis: The command `> log.txt` is intended to create an empty log named `log.txt`. This command behaves differently for some shells such as `zsh`. In `zsh`, the command is interpreted as `cat > log.txt`. (See https://stackoverflow.com/a/15546937 for more details.) Fix: Use `: > log.txt` to reliably create an empty log.
- Loading branch information