Sponsored Content
Top Forums Shell Programming and Scripting Shell script to read file into variable Post 302176930 by aspect_p on Wednesday 19th of March 2008 03:39:05 PM
Old 03-19-2008
i am using this in the script
traceroute -m1 ipaddr |grep 10.12 |awk '{ print $3}'| tr -d '(' | tr -d ')' | read ipaddr

echo $ipaddr

the only problem now is that it wont run as a single command.

ipaddr=$ ( traceroute -m1 10.0.100.1 |grep 10.12 |awk '{ print $3}'| tr -d '(' | tr -d ')' )
tracert.sh: line 3: syntax error near unexpected token `|'
tracert.sh: line 3: `ipaddr=( traceroute -m 1 10.100.0.100 |grep 10.12 |awk '{print $3}'| tr -d '(' | tr -d ')' )'
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read variable from file in a C shell script

Hi, I have a 1-line file which looks like " First second third 4 five". I need to extract the number (here 4) in that line and put it in a variable. I will use the variable later to make few tests in my C shell script. Can somebody help me? (2 Replies)
Discussion started by: haouesse
2 Replies

2. Shell Programming and Scripting

Perl script variable to read shell command

Solaris 10 Korn shell ksh, Hi there, I have figured out to get yesterday's date which is using the below command: TZ=GMT+24; date +%d-%b-%Y to get the format of 30-Sep-2008 and TZ=GMT+24; date +%Y%m%d to get the format of 20080930. I need this two format. In my perl script below I need... (4 Replies)
Discussion started by: bulkbiz
4 Replies

3. Shell Programming and Scripting

how to read dbf file in shell script and to convert dbf file usinf shell script

Hi all, I am new to shell scripting. I have dbf file and I need to convert it into csv file. OR, can i read the fields from a .dbf file and OR seprate the records in dbf file and put into .csv or txt. Actually in the .dbf files I am getting , the numbers of fields may vary in very record and... (6 Replies)
Discussion started by: gauara
6 Replies

4. Shell Programming and Scripting

How to write script read file and assign it as variable?

Hi all, I want write a csh script which must be able: 1.read a file 2.assign value in file as variable and can i use read in csh script? thx (2 Replies)
Discussion started by: proghack
2 Replies

5. Shell Programming and Scripting

How to read file and load data into a script as variable

I need to read a text file that contain columns of data, i need to read 1st column as a function to call, and others are the data i need to get into a ksh script. I am quite new to ksh scripting, i am not very sure how to read each row line by line and the data in each columns of that line, set... (3 Replies)
Discussion started by: gavin_L
3 Replies

6. Shell Programming and Scripting

How to read a file through shell script?

hi all, i have to read a file using shell script for example my csv file is like this Tid Inputfille Inputfilepath 1 ABC_20141218.idr /export/home/him60t1/input 2 ABC_20141219.idr /export/home/him60t1/input1 what i have to do is if on my command line i... (1 Reply)
Discussion started by: ramsavi
1 Replies

7. Shell Programming and Scripting

How to read * in a variable in shell script??

hi, i have a text file which conatins some fields delimited by space. some fields contains * as entries. cron_file.txt 0 * * * * 0 3 * * * i want to read each line 1 by 1 and store each field in seperate variables n a shell script. i am unable to read the field that contains a *. how... (3 Replies)
Discussion started by: Little
3 Replies

8. Shell Programming and Scripting

How to read a two files, line by line in UNIX script and how to assign shell variable to awk ..?

Input are file and file1 file contains store.bal product.bal category.bal admin.bal file1 contains flip.store.bal ::FFFF:BADC:CD28,::FFFF:558E:11C5,6,8,2,1,::FFFF:81C8:CA8B,::FFFF:BADC:CD28,1,0,0,0,::FFFF:81C8:11C5,2,1,0,0,::FFFF:81DC:3111,1,0,1,0 store.bal.... (2 Replies)
Discussion started by: veeruasu
2 Replies

9. Shell Programming and Scripting

Read in shell variable values from a file

Hello, I have a simple script that runs an application, # these arguments have the same value for all splits ARCH=12.11.1 BATCHES=50 EPOCHS=5000 LEARN_MODE=ONLINE LEARN_RATE=0.25 PROJ=02_BT_12.11.1.proj echo "processing split A on hex" cd A/ DATA_SET=S2A_v1_12.1.1_1... (4 Replies)
Discussion started by: LMHmedchem
4 Replies

10. UNIX for Dummies Questions & Answers

Shell script to read lines in a text file and filter user data Shell Programming and Scripting

sxsaaas (3 Replies)
Discussion started by: VikrantD
3 Replies
clients.conf(5) 					  FreeRADIUS client configuration					   clients.conf(5)

NAME
clients.conf - FreeRADIUS client configuration DESCRIPTION
The clients.conf file contains definitions of RADIUS clients. The information in this file overrides any information provided in the deprecated clients(5) and naslist(5) files. The file format is the same as that used for radiusd.conf. See radiusd.conf(5) for more details. Each RADIUS client entry has the following basic form: client <short-name> { <attribute> = <value> } ATTRIBUTES
The attributes that can appear in a client section are listed below. Required attributes are labelled as such. All other attributes are optional. ipaddr [Required] The IP address of the client. For IPv6, use "ipv6addr" secret [Required] The RADIUS shared secret used for communication between the client/NAS and the RADIUS server. shortname [optional] A short alias that can be used in place of the IP address or fully qualified hostname provided in the first line of the section. nastype The nastype attribute is used to tell the checkrad.pl script which NAS-specific method it should use when checking simultaneous use. The following values are currently recognized: cisco computone livingston max40xx multitech netserver pathras patton portslave tc usrhiper other login Reserved for future use. password Reserved for future use. EXAMPLES
client localhost { ipaddr = 127.0.0.1 secret = testing123 shortname = localhost nastype = other } This adds a client for the loopback address. This is useful in testing the server locally, for example with radclient(1). client private-network-1 { ipaddr = 192.168.0.0 netmask = 24 secret = testing123-1 shortname = private-network-1 } This entry represents any client from the 192.168.0.0/24 network. The old-style format from 1.x is still accepted by the server, but that form is deprecated. FILES
/etc/raddb/clients.conf /etc/raddb/radiusd.conf SEE ALSO
radiusd(8), radiusd.conf(5), clients(5), naslist(5) AUTHOR
FreeRADIUS is authored by the FreeRADIUS team. http://freeradius.org/ 13 June 2005 clients.conf(5)
All times are GMT -4. The time now is 12:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy