View Single Post

  #5 (permalink)  
Old 05-09-2008, 08:24 PM
rockdalinux's Avatar
rockdalinux rockdalinux is offline
Contributors
User
 
Join Date: May 2005
Location: Bangalore
My distro: RHEL, HP-UX, Solaris, FreeBSD, Ubuntu
Posts: 581
Rep Power: 7
rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough
Default

Login using ssh

Use find command and delete file. for eg delete all *.tmp file, enter
Code:
find . -iname "*.tmp" -exec rm {} \;
You can also run command using ssh
Code:
ssh user@solaris.box.com find . -iname "*.tmp" -exec rm {} \;
__________________
Rocky Jr.
You may have my body & soul, but you will never touch my pride!

If you have knowledge, let others light their candles at it.

Certified to work on HP-UX / Sun Solaris / RedHat
Reply With Quote