Re: [git-users] bash echo ' and ( problem

2022-01-27 Thread Konstantin Khomoutov
On Thu, Jan 27, 2022 at 09:49:02AM -0800, skybuck2000 wrote: > Script test.sh runs badly in git bash: > > echo Let's start > > and > > echo (convert blabla) [...] In POSIX-compatible shells, of which Bash is one example, apostrophes delimit a string—making what's between them a single "word"

Re: [git-users] bash echo ' and ( problem

2022-01-27 Thread Magnus Therning
skybuck2000 writes: Script test.sh runs badly in git bash: echo Let's start and echo (convert blabla) Creates problems when run: ./test.sh Complains missing ' to terminate Complains ( How to solve these problems for git bash echo ?!?!?!? I tried git echo "Let's start" But problem

[git-users] bash echo ' and ( problem

2022-01-27 Thread skybuck2000
Script test.sh runs badly in git bash: echo Let's start and echo (convert blabla) Creates problems when run: ./test.sh Complains missing ' to terminate Complains ( How to solve these problems for git bash echo ?!?!?!? I tried git echo "Let's start" But problem remains. Bye, skybuck.