On Tue, Nov 04, 2008 at 05:25:40PM +0100, Michael Schwartzkopff wrote: > Hi, > > when I use showscores im my 2.1.4-2 setup I get nasty error messages like: > > rm: cannot remove `/tmp/dkshowscorestmpfile3dk': No such file or directory > > Fix: > [ -e $tmpfile ] && rm $tmpfile > [ -e $tmpfile2 ] && rm $tmpfile2 > [ -e $tmpfile3 ] && rm $tmpfile3 > > instead of: > > rm $tmpfile $tmpfile2 $tmpfile3
rm -f $tmpfile $tmpfile2 $tmpfile3 would do too. > > > -- > Dr. Michael Schwartzkopff > MultiNET Services GmbH > Addresse: Bretonischer Ring 7; 85630 Grasbrunn; Germany > Tel: +49 - 89 - 45 69 11 0 > Fax: +49 - 89 - 45 69 11 21 > mob: +49 - 174 - 343 28 75 > > mail: [EMAIL PROTECTED] > web: www.multinet.de > > Sitz der Gesellschaft: 85630 Grasbrunn > Registergericht: Amtsgericht M?nchen HRB 114375 > Gesch?ftsf?hrer: G?nter Jurgeneit, Hubert Martens > > --- > > PGP Fingerprint: F919 3919 FF12 ED5A 2801 DEA6 AA77 57A4 EDD8 979B > Skype: misch42 > _______________________________________________ > Linux-HA mailing list > [email protected] > http://lists.linux-ha.org/mailman/listinfo/linux-ha > See also: http://linux-ha.org/ReportingProblems _______________________________________________ Linux-HA mailing list [email protected] http://lists.linux-ha.org/mailman/listinfo/linux-ha See also: http://linux-ha.org/ReportingProblems
