Replace echo with printf that should be more portable

Orestis Floros 2020-07-01 11:21:13 +02:00
parent 5fcfc6a10c
commit fe5b7506b3

@ -31,7 +31,7 @@ First example:
```zsh
cd /tmp; mkdir c; cd c
git init # let coc.nvim know this is a project
echo '#include <stddef.h>\nint main() {}' > a.cc
printf '#include <stddef.h>\nint main() {}\n' > a.cc
nvim a.cc
```