Need rm script help ASAP


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need rm script help ASAP
# 8  
Old 08-23-2002
would this have also worked ?

would this have worked maybe ?

#! /usr/bin/sh

if
[ "$X"="_"]
then
echo "_1234567.RP to be fixed"

rm *_*1234567.RP

fi

Your input would be greatly appreciated once again..

thanks
simon
# 9  
Old 08-23-2002
why dont you try it and let us know if it worked.

with that kind of response it sounds as if you did not try anything befor you posted, and your just looking for an answer.
# 10  
Old 08-23-2002
it did not work.. it is missing something. I guess I asked incorrectly. I'll remember to ask appropriately so people like you don't get upset.
# 11  
Old 08-24-2002
Bug

Yet another way to truncate leading "_"

#!usr/bin/sh

result=`echo "_1234567.RP" | tr -d "_"`
echo $result


Thanks & Regards
Suresh Kumar S.M.
# 12  
Old 08-24-2002
simon2000, the solution that you posted seems so far off the mark that I'm really sure what to say about it. First, out of the blue you are testing the value of a variable called X. Where did X did it's value? And that rm command throws me. Why are we deleting files? At this point I'm not really sure that I understand what problem you are trying to solve.
# 13  
Old 08-27-2002
Perderabo - Thanks for the help. I was attempting to remove an underscore that's all. I thought the "rm" was the way to go. But actually the tr -d _ appears to be the most logical way to go.

sorry to put you and the others through so much trouble.

back to working on my scripting..

simon2000
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need a Python Script asap

I work on various messages received from server and want to write a python script that can sort messages with unique flag values and give me the output in a text file. I get these messages in the form of .zcap file from server and I use an internal tool to filter: Step 1) Zcap file to get... (1 Reply)
Discussion started by: Vijeta Laad
1 Replies

2. Homework & Coursework Questions

PLEASE HELP ME ASAP

can anyone help me with this??? make program ( shell script) to detect and display errors occurred in initializing a Unix system (4 Replies)
Discussion started by: dementor
4 Replies

3. Shell Programming and Scripting

Need help to write a shell script ASAP

Hi, 1) Need help to write script in KSH to detect a duplicate file. 2) The original file needs to be moved from current path to a different path 3) The duplicate file should continue to stay in the same path. Exact file names & duplicate file names are given below. Please help me at the... (7 Replies)
Discussion started by: bhagya3001
7 Replies

4. Shell Programming and Scripting

Need a help for a query--PLZ ASAP

I want to open a file which is in encrypted form and it consists Usernames and passwords.a custommized command is there to open the file.the command is exe of a shell script which takes arguments filename. after opening with the command it will show four options which are ADD,update,search and... (2 Replies)
Discussion started by: sivaranga001
2 Replies

5. Shell Programming and Scripting

KERBEROS_V4 -help needed ASAP

#!/bin/sh HOST='ftp.bend.com' USER='temp1' PASSWD='temp2' FTPPATH='SY1:' ifile='concat.txt' #FTP concatenated file ftp -n $HOST <<END_SCRIPT quote USER $USER quote PASS $PASSWD binary cd $FTPPATH put $ifile get $ifile retrieval.$$ quit END_SCRIPT if then echo "FTP of... (2 Replies)
Discussion started by: Sgiri1
2 Replies

6. Shell Programming and Scripting

need help asap!

Hello everyone, I'm new to using Linux and i am trying to create a script that will produce a list of all the files of the present working directory. So far I only have this #!/bin/bash cd / ls -lt>> I can't figure out what I am suppose to do next. (6 Replies)
Discussion started by: reecygee
6 Replies

7. Shell Programming and Scripting

need help asap

i have a file having content a|b|c 1|2|33 4|6|55 end a|b|d 3|4|55 end a|b|c 45|67|98 end so i want to print 3rd field of header a|b|c and footer end. e.g. o/p should be 33 55 98 (7 Replies)
Discussion started by: manas_ranjan
7 Replies

8. Shell Programming and Scripting

UNIX script problem ..Plz help ASAP

Hi folks, I have written down a UNIX script which actually FTP the file to other server. What is happening now , this script is not working only for 1 server , as it is working for 32 different FTP server . In this particular server , we are getting message “FTp:550 access denied”... (1 Reply)
Discussion started by: khan1978
1 Replies

9. UNIX for Dummies Questions & Answers

I Need Some (help)answers Asap

can someone explain the meaning of the following shell commands: 1. who / wc -l 2. who / sort > user_names 3. cat students > new_students 4. current_day='date / cut -cl-3' i would also appreciated if you could tell me some things about the umask 1. what is a good umask value and why? 2.... (2 Replies)
Discussion started by: dakis
2 Replies

10. UNIX for Dummies Questions & Answers

Sendmail - need help ASAP

Hi guys ! I have 24 hours to learn about sendmail (as much as I can) ... where to start ? where to go ? thnx, (2 Replies)
Discussion started by: Gismo
2 Replies
Login or Register to Ask a Question