Quote:
Originally Posted by tonyvirk
Thanks everyone. It worked.
Could also tell me how can I do the request where user have asked to remove all files from certain directory with .html extension.
|
rm <directory>/*.html (eg rm /dding/ting/tong/unixyang/output/*.html)
Or if it should recurse to find all html files in subdirectories too:
rm -r <directory>/*.html (be careful to type this correctly)