Sponsored Content
Top Forums Shell Programming and Scripting Help need: new line operator : Post 302182677 by ag79 on Monday 7th of April 2008 09:31:05 AM
Old 04-07-2008
what exactly is the problem here?

If you want all of it on a single line, end the gsub func call with a semicolon (Smilie, before the if.. starts.

You need to use the backslash as the last character of the line if you need to spread the awk string across more than one lines.

maybe i didnt understand what is your issue, can you elaborate?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

And operator

I am trying to check two variables and if both are blank I want to set a flag: the_f3_pid=`rsh $target ps -ef | grep "f3.eab" | awk '{print $2}'` the_f7_pid=`rsh $target ps -ef | grep "f7.eab" | awk '{print $2}'` if ; then y=1 fi I get an error: ./script_name: test: 0403-021 ]... (4 Replies)
Discussion started by: rcarnesiii
4 Replies

2. HP-UX

Or operator with if

hi, i was trying to club to test condition with if. if -o ; then it is giving me error message, i wanted to ask how can we check two condtions with one if. (1 Reply)
Discussion started by: babom
1 Replies

3. Programming

new operator

Hi, Please clear the 2 questions, 2 Questions, 1) Why the new as a operator? Is there any special reason why it can't be a function like malloc? 2) How are we considering sizeof(),new are as a opearartors? I know + - * / -> , . etc.. are operators, which criteria satisfied by sizeof()... (4 Replies)
Discussion started by: Nagapandi
4 Replies

4. Shell Programming and Scripting

line 5: [: -gt: unary operator expected

Hello all, :confused: I am not getting this error. Pls help me. ./construct_operon.sh: line 5: #!/bin/bash # Construct Operons using gene pairs. rm -rf operons_result lines=`awk 'END {print NR}' ecoli_operons` while ; do head -1 ecoli_operons | awk '{print $1"\n"$2}' > pattern ... (5 Replies)
Discussion started by: admax
5 Replies

5. UNIX for Dummies Questions & Answers

su with << operator

All, THe below is my script , when i use this i am getting nothing . could any one help me to know what is the use of the << operator below su - $8 << supo echo "exportsph $2 $1 $3 $4" exportsph $2 $1 $3 $4 supo i also tried as individual command su - userid << supo , when i do... (3 Replies)
Discussion started by: arunkumar_mca
3 Replies

6. UNIX for Dummies Questions & Answers

+= operator

im new to bash scripting and im just using online tutorials and trial and error. i wanted to write a script to read numbers from a file and find their sum: #!/bin/bash theSum=0 for line in $(cat numbers.txt) do let "theSum = theSum + $line" echo "$line" done echo "The sum is... (3 Replies)
Discussion started by: astrolux444
3 Replies

7. Shell Programming and Scripting

solaris 10 and == operator

Hi , I have .sh script and it's running on solaris 10 ( ksh is shell) and part of the script is : orahome=`awk -F: '$1 == "'$oraserver'" {print $2}' /var/opt/oracle/oratab` if ; then ORACLE_HOME=/opt/oracle/oracle_home;export ORACLE_HOME else ORACLE_HOME=$orahome;export... (9 Replies)
Discussion started by: talashil
9 Replies

8. Programming

Ambiguity in operator []

Hi All, When i try to compile the following code for 64-bit it works, whereas for 32-bit version, Compiler barfs: #include <iostream> #include <string> class String { public: String() { } String(const char* src) : myStr(src) { } String(const std::string& src) :... (0 Replies)
Discussion started by: 14341
0 Replies

9. UNIX for Dummies Questions & Answers

Confusion with ++ operator

Can anyone guide me whats happening in this program given below. I got the Output 7 7 12 49... i was expecting 5 16 9 25. First is simple (3+1)*(3+1) Second is again 3*3; i =4 now Third i =5 then 5*5; i don't know where i am going wrong! #include<stdio.h> #define PRODUCT(x) (x*x) int... (5 Replies)
Discussion started by: Abhishek_kumar
5 Replies

10. UNIX for Beginners Questions & Answers

Unterminated <> operator

Hello. I'm self teaching myself and coded a program but I keep getting a illegal division by 0 error. I know what it means but I don't know where I am messing up. Here is the code: #!/usr/bin/perl @lines = <>; my %earned; my %possible; for ($i = 1; $i <... (6 Replies)
Discussion started by: Eric7giants
6 Replies
isdnformat(5)						    Linux System Administration 					     isdnformat(5)

NAME
isdnformat - common isdn config file format DESCRIPTION
This man page describes the format of all isdn config files. FORMAT
Empty lines are ignored. If a # is encountered, this character and the rest of the line is ignored (it's considered a comment). You can prepend a backslash to prevent this and use the # character. If the last character of a line is a backslash , the next line is a continuation of the current line. The file format is like smb.conf or win.ini: there are sections and entries within the section. However, the syntax was expanded with sub- sections; these can be nested as often as you like. All whitespace (space and tabs) at the end of the line are ignored. Section and entry names are case insensitive. Values are case sensitive, of course (the case is preserved). Section and entry names may not use the characters "*?|&/"; if one of these is encountered, it is ignored. At the beginning of the line you may use as much whitespace as you like. A section has the format "[" NAME "]". You may use whitespace between the braces and the name, or none at all. An entry has the format ENTRY "=" VALUE. You may use whitespace before and after the equal sign, or none at all. A subsection starts with ENTRY "=" "{" and ends with "}". You may use sections, entries and subsections between the start and the end tag. Beware: unlike samba or windows the semicolon is not used for comments ! You can use INCLUDE(File) to include a file. If the filename is not absolute, it's considered relative to the directory of the including document. You may use it anywhere in a file, but there may be no space characters in the file! All subsections started in an include file must end in that include file, so the number of opened and closed brackets must match. Beware: recursive including will cause the program to break. The library does not prevent this. AUTHOR
This manual page was written by Andreas Jellinghaus <aj@dungeon.inka.de>, for Debian GNU/Linux and isdn4linux. Now maintained by Paul Slootman <paul@isdn4linux.de>. ISDN 4 Linux 3.13 2000/09/15 isdnformat(5)
All times are GMT -4. The time now is 10:57 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy