Using RSH to delete workstation directory with a fault tolerence


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Using RSH to delete workstation directory with a fault tolerence
# 1  
Old 01-09-2006
Using RSH to delete workstation directory with a fault tolerence

I'm using a UNIX server to RSH into a Windows 2000 workstation... I want to run a script that deletes two directories and then go to the next workstation.

This is what I have now, but if for some reason the file is in use or not responding; the 'script' hangs. I'm wondering if anyone knows of a way to cause the script to timeout and move on to the next wrks...

Here is the script I have... Appreciate the help.

for x in `nt_list`;do echo $x;rsh $x "rm -rf c:\docume~1\level2 c:\docume~1\level3";done

Edit: I should also note that the 'nt_list' is a pre-written unix command that shows all of the windows workstations that are connected to the server.

Last edited by search66; 01-09-2006 at 02:42 PM..
# 2  
Old 01-09-2006
MMmm.. Not an expert, but we also have something like it. Try mounting the drive as a filesystem on the server it self. That way unix will get priority instead of windows. It think it is much faster aswell.. rm /mountC/dir1/dir2/text.txt
# 3  
Old 01-09-2006
Quote:
Originally Posted by Blooper
MMmm.. Not an expert, but we also have something like it. Try mounting the drive as a filesystem on the server it self. That way unix will get priority instead of windows. It think it is much faster aswell.. rm /mountC/dir1/dir2/text.txt
Appreciate the feedback. I'm not sure how I could mount a remote Windows workstation drive/directory from a Unix server...
# 4  
Old 01-09-2006
MMMM... That my dear friend is something I will not be able to help U with @ the moment. I'm going to get some coffie... Then after the coffie I might be able to help u.. but I think it will be a very long coffie break.. Smilie
# 5  
Old 01-09-2006
No problems... I think I'll do the same... I think I'm Googled-out
# 6  
Old 01-09-2006
Quote:
Originally Posted by search66
Appreciate the feedback. I'm not sure how I could mount a remote Windows workstation drive/directory from a Unix server...
Samba can do that.

What Unix system are you running?
# 7  
Old 01-09-2006
*cringe*

SCO
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Why can't I delete this directory ?

Oracle Linux 6.4 bash shell I am trying to remove the directory named OPatch. I am trying to run rm and rmdir commands while logged in as grid user, the owner of the directory. But I keep getting "Permission denied" error. It is an empty directory. Any idea why I am getting 'Permission denied'... (5 Replies)
Discussion started by: kraljic
5 Replies

2. Shell Programming and Scripting

Script needed to delete to the list of files in a directory based on last created & delete them

Hi My directory structure is as below. dir1, dir2, dir3 I have the list of files to be deleted in the below path as below. /staging/retain_for_2years/Cleanup/log $ ls -lrt total 0 drwxr-xr-x 2 nobody nobody 256 Mar 01 16:15 01-MAR-2015_SPDBS2 drwxr-xr-x 2 root ... (2 Replies)
Discussion started by: prasadn
2 Replies

3. Programming

Using gdb, ignore beginning segmentation fault until reproduce environment segmentation fault

I use a binary name (ie polo) it gets some parameter , so for debugging normally i do this : i wrote script for watchdog my app (polo) and check every second if it's not running then start it , the problem is , if my app , remain in state of segmentation fault for a while (ie 15 ... (6 Replies)
Discussion started by: pooyair
6 Replies

4. Shell Programming and Scripting

How to delete some of the files in the directory, if the directory size limits the specified size

To find the whole size of a particular directory i use "du -sk /dirname".. but after finding the direcory's size how do i make conditions like if the size of the dir is more than 1 GB i hav to delete some of the files inside the dir (0 Replies)
Discussion started by: shaal89
0 Replies

5. Solaris

Directory cannot delete

Dear All, I have problem at T5220 server, when I enter at my server as oracle user and make directory ex. directory test then I will delete directory test with command : rm -rf, what happenned...?? that directory cannot deleted. What's wrong with my server...? Note: my server T5220 with... (3 Replies)
Discussion started by: mbah_jiman
3 Replies

6. AIX

Can not delete Directory

I've run into a issue where I can not delete directories under a user directory. There are several of these dir now. I can do a 'mv' of the dir to another dir. ie 'mv sp2456 old/' and it will move the directory, but I can not delete them. Here is all the information I hope you will need to... (9 Replies)
Discussion started by: Clevelaw
9 Replies

7. UNIX for Dummies Questions & Answers

Delete OS from Unix Workstation B2000

Hello, I have two Unix WS B2000 from HP and I would like to know how I could delete the OS from the harddisk. Thanks (4 Replies)
Discussion started by: baloo64
4 Replies

8. Solaris

Can't delete directory

Hi, I have a problem on Solaris 10 regarding deletion of files when I try to recursively delete the directory /opt/Tivoli as root, I get the following error message: rm: Unable to remove directory Tivoli/lcf/dat/1/no-del/bin/solaris2/TME: File exists rm: Unable to remove directory... (4 Replies)
Discussion started by: funksen
4 Replies

9. UNIX for Dummies Questions & Answers

delete a directory

Hi all, I have an empty directory "-ltr". How to delete it ? Thanks (4 Replies)
Discussion started by: madmat
4 Replies

10. HP-UX

Can't delete a directory on HP-UX

Hi, I am having hard time to delete a directory: $ rm -r testoxdwdw rm: testoxdwdw non-existent $ rmdir testoxdwdw rmdir: testoxdwdw: No such file or directory $ rm -rf testoxdwdw Thanks! (2 Replies)
Discussion started by: oradbus
2 Replies
Login or Register to Ask a Question