Patrick Hess <patrick_hess(at)t-online.de> wrote:
> #!/bin/sh
> echo .$@. > /tmp/user/patrick/PARAM
> exec /opt/StarOffice/program/soffice "$@"
$@ ergibt nur innerhalb von Double-Quotes Sinn. Außerhalb
verhält es sich genauso wie $*.
Wenn Du wissen willst, ob etwas mit einem Leerzeichen als
ein parameter oder als zwei getrennte Parameter übergeben
wird, hilft Dir obiges nicht, denn Du siehst es daran
nicht. Da wäre es hilfreiche gewwesen, z.B.
echo .$1. .$2.
zu verwenden. Da käme dann entweder
.foo. .bar.
oder
.foo bar.
bei heraus.
Gruß
Olli
-- Oliver Fromme, secnetix GmbH & Co KG, Oettingenstr. 2, 80538 München Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "Clear perl code is better than unclear awk code; but NOTHING comes close to unclear perl code" (taken from comp.lang.awk FAQ) To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org with "unsubscribe de-bsd-questions" in the body of the messageReceived on Sat 21 Jun 2003 - 20:24:21 CEST