On Tue, Feb 23, 2010 at 08:30:16PM +0100, Daniel Bunzendahl wrote: > if [ !$LSEITE ]; then
You want: if [ ! "$LSEITE" ] There are probably more errors. This is just the line you mentioned in particular as not working.
On Tue, Feb 23, 2010 at 08:30:16PM +0100, Daniel Bunzendahl wrote: > if [ !$LSEITE ]; then
You want: if [ ! "$LSEITE" ] There are probably more errors. This is just the line you mentioned in particular as not working.