Text Link Ads

Tuesday, August 28, 2007

Tip for the day: AVOID PERMISION DENIED

To avoid 'Permission Denied' messages when using the 'find' command:

in ksh :-
find -name '' -print 2 > /dev/null

in csh :-
(find -name '' -print >/dev/tty) >& /dev/null

No comments: