Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'script solution' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
script solution
Authored by: macubergeek on Feb 18, '02 06:58:09PM

Hi I frequently mount a share from my winNT box to my macos X box and I have solved this problem with the following script that I run on the Mac as a cron job, running every minute

#!/bin/sh
if ls pcshare
then
rm -R /Volumes/pcshare/.Trashes
rm /Volumes/pcshare/'._.Trashes'
rm /Volumes/pcshare/'.DS_Store'
fi



[ Reply to This | # ]
script solution
Authored by: zadak on Feb 19, '02 05:04:45AM

how do you set up a cron job?
is this totally safe to do?

:)


roger



[ Reply to This | # ]