I am a newbie to Unix, I am using vi editor. I was able to print output to the screen using simple scripts. But when I tried a midlevel script I don't see anything on the screen and Cursor is just blinking when I type ./test11 filename. I have used chmod 755 also, but of no use. Any help would be appreciated. Here is my script:
The 2nd line of the file has filename, filesize and record count. I want to capture in a variable since I need to work on it for different purpose and display seperately on the screen.
1. There is no input file to the awk command. The script won't figure out that you wanted to run the awk statement against the file you specified on the command line, so the awk command is hanging waiting for input.
2. You are not setting variables in the script by setting them in awk.
3. You don't need to traverse the whole file if you only want the second line, you could exit() after processing the line.
An example of what might work ( keeping the awk )...untested
The editor you use has no bearing on the script -- unless you are using a Microsoft editor which puts both a carriage return and a linefeed at the end of each line. (Unix systems only use a linfeed.)
Quote:
The 2nd line of the file has filename, filesize and record count. I want to capture in a variable since I need to work on it for different purpose and display seperately on the screen.
To read the second line of a file, it is quicker to use the shell than an external program:
To split the line into its constituent parts, use shell parameter expansion:
can you help me to answer these questions ...
Q1 - Write shell script to print the following pattern:
1
22
333
4444
55555
Q2-
Write shell script to compare the strings, check and see if a command
line argument matched the string "net321" print on screen "** string
matches ** " if... (3 Replies)
hi...
i want to print the below format by using shell scripting...plz help me
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
Thanking u in advance...
regards
ram (1 Reply)
plz help me with this question :
1111 | aaaa | pppp | 23/9/87
3333 | dddd | oooo | 6/9/8
4444 | gggg | rrrr | 5/8/9
5555 | qqqq | eeee
ans:
5555 | qqqq | eeee
depending upon how many "|" are in the question
be quick.. (8 Replies)
this script reads source.txt and move
and random choice 6 files among 25 txt file
and renmame it..
but it is not executed..
whats problem?
#!/bin/ksh
while read line
do
cd $line/radmin
num=0
/bin/ls *.txt |
while read file_nm ; do
(( check = $RANDOM % 2 ))
if ; then
continue... (1 Reply)
hi
I have been given a new Sun fire V120 which i had no use for but my firend wished to host a maple story sever on it so i was happy to let him use it but i have run in to the problem that i have no clue how to configure it so he can use it if anyone can help we would realy appreciate it. Am... (1 Reply)
alright, i just got this assignment. since im very new to unix programming, i would like to have some ideas about it. honestly, i dont even know what the hell he is asking for. plz see the attached pdf and help me out. thank you :( (2 Replies)
i'm pretty new to unix programming. i just wanna know how exactly fork(), waitpid() works. i have read some from the book, but it's still confusing. especially with those < 0 and == 0. plz help!!!! (1 Reply)