Unable to display correctly the contents of a file without a line feed


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unable to display correctly the contents of a file without a line feed
# 1  
Old 06-25-2008
Unable to display correctly the contents of a file without a line feed

I am using AIX and ksh.
I need to display the contents of a file that has a pid (process id). Because the file is open, it doesn't have the line feed or new line, so for some reason if I do this:
`cat $pid` , where $pid is the name of the fully qualified file, it displays
test3.sh[12]: 426110: not found

It should display:
426110

I tried to copy the file and then try to run vi through the scripts; and edit it; and save it so that a /n will be added at the end (assuming that that is the problem). The file only has one line which is the number of the process id.
It seems simple, but no luck. Any suggestions please....? thank you

Last edited by Gato; 06-25-2008 at 08:52 PM..
# 2  
Old 07-17-2008
Quote:
Originally Posted by Gato
I am using AIX and ksh.
I need to display the contents of a file that has a pid (process id). Because the file is open, it doesn't have the line feed or new line, so for some reason if I do this:
`cat $pid` , where $pid is the name of the fully qualified file, it displays
test3.sh[12]: 426110: not found

It should display:
426110

I tried to copy the file and then try to run vi through the scripts; and edit it; and save it so that a /n will be added at the end (assuming that that is the problem). The file only has one line which is the number of the process id.
It seems simple, but no luck. Any suggestions please....? thank you
It would help to see your whole script. It appears that line 12 of the script test3.sh consists of the line: `cat $pid`

Is that correct?

Also, just running `cat $pid` as a command does not look valid.

Usually that is done to set an environment varilable, thus I tried something similar in Solaris with ksh:

export rp=rpatches
`cat $rp`
ksh: 1): not found

versus

cat $rp
1) Patch 4157095 applied on Fri Apr...

OR

export catrp=`cat $rp`
echo $catrp
1) Patch 4157095 applied on Fri ...

So in your example:

catPid=`cat $pid`

Then you would manipulate $catPid with commands like:

echo ${catPid}
although that seems a bit redundant...

Anyway, the first 11 lines (and the rest) might seem to have a bearing on the issue, but hard to tell without seeing them. Maybe it will be clearer if you show the whole script.

HTH,
rokky
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help in removing control M and Line feed in output file.

Hi All, In my output file i am getting control m character and also the line feeds at different places and with different combinations, the content of the file is supposed to be in a single line but if there is a line feed in between then from there onwards it's going into new line. I tried... (7 Replies)
Discussion started by: Bipin Kumar
7 Replies

2. Shell Programming and Scripting

Display array contents on a new line

ksh eg arrayname=(1 2 3 4 5) I'm trying to display the individual contents of an array on a new line without using a loop, using one line of code. output 1 2 3 4 5 (3 Replies)
Discussion started by: squrcles
3 Replies

3. Shell Programming and Scripting

using sed command to display contents where line numbers are stored in variables

if i want to display the contents of a file between say line number 3 and 10 then i use the following command sed -n '3,10p' filename if this 3 was contained in x and 10 was contained in y then how wud this command modified? sed -n '$x,$yp' filename does not work..please advise (2 Replies)
Discussion started by: arindamlive
2 Replies

4. Shell Programming and Scripting

Delete a specific line from the feed file

Hi All, I have came across an issue where I will grep for a primary key and then I have to delete that particular line from the feed file and then save it. The feed file is a TAB delimited one. For example: grep 539439AE9 file1 100.00000 20090119 20090119 20090521 ... (4 Replies)
Discussion started by: filter
4 Replies

5. Shell Programming and Scripting

Remove line feed from csv file column

Hi All, i have a csv file . In the 7th column i have data that has line feed in it. Requirement is to remove the line feed from the 7th column whenever it appears There are 11 columns in the file C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11 The value in C7 contains line feed ( Alt + Enter ),... (2 Replies)
Discussion started by: r_t_1601
2 Replies

6. Shell Programming and Scripting

Remove line feed from csv file column

Hi All, My requirement is to remove line (3 Replies)
Discussion started by: r_t_1601
3 Replies

7. Shell Programming and Scripting

replace last form feed with line feed

Hi I have a file with lots of line feeds and form feeds (page break). Need to replace last occurrence of form feed (created by - echo "\f" ) in the file with line feed. Please advise how can i achieve this. TIA Prvn (5 Replies)
Discussion started by: prvnrk
5 Replies

8. UNIX for Dummies Questions & Answers

unable to display the souce line in gdb

Hi All, I am unable to display the code in gdb. When i put list command i dont get any line. I mean i am unable to display the source line in gdb. Can any body help me. Thanks & Regards Gauri (4 Replies)
Discussion started by: gauri
4 Replies

9. Shell Programming and Scripting

Removing Carriage Return and or line feed from a file

Hello I'm trying to write a shell script which can remove a carriage return and/or line feed from a file, so the resulting file all ends up on one line. So, I begin with a file like this text in file!<CR> line two!<CR> line three!<CR> END!<CR> And I want to end up with a file... (1 Reply)
Discussion started by: tbone231
1 Replies

10. UNIX for Dummies Questions & Answers

file feed one line per argument

What tools can I use to accomplish this? I'm writing a shell script to analyze an inittab file. Here's a sample file: init:3:initdefault: ioin::sysinit:/sbin/ioinitrc >/dev/console 2>&1 tape::sysinit:/sbin/mtinit > /dev/console 2>&1 muxi::sysinit:/sbin/dasetup </dev/console >/dev/console... (10 Replies)
Discussion started by: jpprial
10 Replies
Login or Register to Ask a Question