problem cutting


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting problem cutting
# 1  
Old 05-20-2008
problem cutting

Code:
echo $line|cut -d " " -f`$plannedCount`-

and this is the output

Code:
$ ./read.sh
./read.sh: 12: not found
JADE TRADER 143W MYPEN 40 HC M X10 28 7 1 0
./read.sh: 9: not found
MYPEN 20 GP X X10 15 2 1 0
./read.sh: 9: not found
MYPEN 40 GP X X10 28 7 1 0
./read.sh: 9: not found
MYPEN 20 GP L X10 15 2 1 0
./read.sh: 13: not found
BUNGA TERATAI 3 5055 NZLYT 20 GP X X11 17 8 1 0
./read.sh: 12: not found
MOL SPLENDOR 0307A MUPLU 40 HC X X11 10 2 2 0
./read.sh: 9: not found
MUPLU 40 HC U X11 10 2 1 0

i don't want to s$ ./read.sh
./read.sh: 12: not found
JADE TRADER 143W MYPEN 40 HC M X10 28 7 1 0
./read.sh: 9: not found
MYPEN 20 GP X X10 15 2 1 0
./read.sh: 9: not found
MYPEN 40 GP X X10 28 7 1 0
./read.sh: 9: not found
MYPEN 20 GP L X10 15 2 1 0
./read.sh: 13: not found
BUNGA TERATAI 3 5055 NZLYT 20 GP X X11 17 8 1 0
./read.sh: 12: not found
MOL SPLENDOR 0307A MUPLU 40 HC X X11 10 2 2 0
./read.sh: 9: not found
MUPLU 40 HC U X11 10 2 1 0
[/code]

the output is correct, the only the thing is that it keep having whatever error..
# 2  
Old 05-20-2008
There is a syntax error somewhere in your script. Without the script, we cannot guess what it is.
# 3  
Old 05-20-2008
what you are getting in $line?
# 4  
Old 05-20-2008
I suggest u to use as below

Code:
echo $line|cut -d " " -f$(echo $plannedCount)-

or

Code:
echo $line|cut -d " " -f`echo $plannedCount`-

# 5  
Old 05-20-2008
Good catch, I missed the backquotes!
# 6  
Old 05-20-2008
Question What exactly are you trying to cut from the line?

I noticed that:
./read.sh: 12: not found
JADE TRADER 143W MYPEN 40 HC M X10 28 7 1 0
./read.sh: 9: not found
MYPEN 20 GP X X10 15 2 1 0

(a) in the first case, 12 is the number of output fields; in the second case, 9 is the number of output fields
(b) this last field is always a 0 (zero)

Are you trying to cut the last field for every line of input?
# 7  
Old 05-20-2008
the last two fields, as a matter of fact
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

cutting field

Hi, I have a var sdt='23032011000000' now if i want only 23 out of above? hw to cut? also..after cuttint-will it be stored in another var as a varchar or as a number? (4 Replies)
Discussion started by: musu
4 Replies

2. UNIX for Dummies Questions & Answers

Help with cutting a string

Hi All, I have a string in the following format "abcd | fghfh | qwer | ertete" I need to cut the values in the following format line1 = abcd | fghfh | qwer line2 = ertete Simply speaking a want to cut all the values before the last delimiter from the line and print it on one line and... (11 Replies)
Discussion started by: amit_kv1983
11 Replies

3. Shell Programming and Scripting

Cutting the value from a string

Hi all I have a string variable ${WHERE_SQL1} where i want to cut the first value of a variable. Eg ${WHERE_SQL1} = 'Where a.id =.................' I the string to be 'a.id =.......' Thanks in advance (2 Replies)
Discussion started by: theeights
2 Replies

4. Shell Programming and Scripting

cutting lines

Dear All, Is there a way to cut the lines that have been "head" Here is what i m trying to do Please advice there is file name dummy.txt now i am trying to head this file 4 time by using a loop and every time this file is head with different values e.g in first instance it will... (7 Replies)
Discussion started by: jojo123
7 Replies

5. Shell Programming and Scripting

Need Help in Cutting a word

Hi All , i am working on a backup script , which would a call a executable file in unix server , Login credentials :: use telnet session to login to Unix server when logged in, this would be my Prompt ::: unix11@raghav: I just need to cut the word unix11 , so that i can use this... (12 Replies)
Discussion started by: raghav1982
12 Replies

6. UNIX for Dummies Questions & Answers

cutting

Is there any cut or awk function that would allow me to take the last part of a path away and save the list into a file? I wrote: find $HOME -mtime +3 > fileList cat fileList /home/102/s/jn/folder/HW /home/102/s/jn/otherfolder/B.txt /home/102/s/jn/folder4/3dA/w... (1 Reply)
Discussion started by: terms5
1 Replies

7. Shell Programming and Scripting

Problem cutting & comparing values

Hi guys I am having some problem cutting and comparing values.I got an INI file which is has some values and ranges mapping to error and warning codes eg criticalerror:69,20,1to9 warningmsg:101,10to19 So taking the scenrio where i have a control script that execute a.ksh, when a.ksh... (6 Replies)
Discussion started by: wilsontan
6 Replies

8. Shell Programming and Scripting

cutting out the last field

Hi all; i was asked to install an inventory tool on our Reliant Unix 5.45 server. I downloaded the file from our intratnet. It was always failing when i try to install it. After some investigation i saw that the installation script had something strange. When i "cat <script>" i see nothing... (2 Replies)
Discussion started by: bcheaib
2 Replies

9. Shell Programming and Scripting

Cutting Up a String

I have a file name coming in as such <string>_YYYYMMDD.DAT The string could be anything. I want to cut out the date and put it in a variable. Can someone help me with this? (4 Replies)
Discussion started by: lesstjm
4 Replies
Login or Register to Ask a Question