Roberto A. Foglietta wrote: > I would know how I can write this > > if ! true; then echo ciao; fi > > in msh's dialet because msh does not recognize ! (not) You can use the else part:
if true; then :; else echo ciao; fi Regards Ralf Friedl _______________________________________________ busybox mailing list [email protected] http://busybox.net/cgi-bin/mailman/listinfo/busybox
