Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the '10.5: Fix the echo -n problem in 10.5' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
10.5: Fix the echo -n problem in 10.5
Authored by: dewab on Tue, Nov 20 2007 at 3:28PM PST
Another option, if you don't want to edit the magic line (the #!/bin/shell line) is to explicitly specify the shell to use to run the script.

I.e.

as opposed to:
$ ./script.sh

do a:
$ /usr/bin/bash ./script.sh

Bit of a pain, but you can avoid editing files if that's a concern.

[ Reply to This | # ]