Sponsored Content
Full Discussion: sed inside sed
Top Forums Shell Programming and Scripting sed inside sed Post 302576637 by CarloM on Friday 25th of November 2011 11:34:42 AM
Old 11-25-2011
Just remove the comma:
Code:
# awk '{print $0"/spEC/g"}' words.dat
802.11a/spEC/g
802.11b/spEC/g
802.11g/spEC/g
802.11n/spEC/g

Also, you don't need 2 awk commands:
Code:
# awk '{print "s/"$0"/spEC/g"}' words.dat
s/802.11a/spEC/g
s/802.11b/spEC/g
s/802.11g/spEC/g
s/802.11n/spEC/g

This User Gave Thanks to CarloM For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Using variable inside 'sed'

Dear all, How can I amend the following command to use variable inside 'sed' ? str=`sed -e 's/orig_string/${var}/g' ${sourcefile}` Thanks, Rocky (3 Replies)
Discussion started by: Rock
3 Replies

2. UNIX for Dummies Questions & Answers

SED inside while loop

Hi, im having problem creating a loop using my code: aside from the fact that the 1st variable (VAR) does not increment, it loops more than the expected output. for sample purposes, test csv contains 3 lines. #get number of lines in the file lines=$( wc -l < test.csv ) ... (5 Replies)
Discussion started by: paoie
5 Replies

3. Shell Programming and Scripting

Need help using sed inside the loop.

Hi, i have written a script. it collects data based on the sql queries executed by it. i have multiple output files. after the output file is made i need to do some cosmetic changes in the files and then store them. i am unable to use sed conditions inside the loop. see below code for... (3 Replies)
Discussion started by: dazdseg
3 Replies

4. Shell Programming and Scripting

sed inside sed for replacing string

My need is : Want to change docBase="/something/something/something" to docBase="/only/this/path/for/all/files" I have some (about 250 files)xml files. In FileOne it contains <Context path="/PPP" displayName="PPP" docBase="/home/me/documents" reloadable="true" crossContext="true">... (1 Reply)
Discussion started by: linuxadmin
1 Replies

5. Shell Programming and Scripting

Using commands inside sed substitution

Dear Friends, Please let me know how to use the date command inside the substitution flag replacement string. echo "01 Jan 2003:11:00:06 +0100" | sed 's/\(.*\)/`date -d \1 "+%Y%m%d%H%M%S"`/' I want to supply \1 string to Here mention below as part of replacement string, date -d <Here>... (5 Replies)
Discussion started by: tamil.pamaran
5 Replies

6. Shell Programming and Scripting

Variable inside sed

Problem: Need to read contents from a file and use that value inside sed as avariable. sample code below. THe below code replaces contents inside file123 for matched string with "$x" value only. but we want the value of x which is read from TextFile.txt to go in there. cat TextFile.txt|while... (3 Replies)
Discussion started by: cvsanthosh
3 Replies

7. UNIX for Dummies Questions & Answers

sed inside awk

What I want to do is delete everything upto the last underscore (_) in column 2. awk '{ $2=$(echo $2 | sed 's/.*_//'); print $0}' Sed works fine if I echo the string into it, this doesnt work inside awk. What am I doing wrong? Similarly, how do I store the substring starting with a... (4 Replies)
Discussion started by: senhia83
4 Replies

8. UNIX for Dummies Questions & Answers

Array inside sed

Hi guys Let me at first describe the whole thing that I'm trying to do. Lets say I have 100 files like the following one. Ow 1230 16.000000 -0.834000 16.083957 1.751652398 -17.20094528 -4.450623277 Hw 1231 ... (6 Replies)
Discussion started by: saleheen
6 Replies

9. Shell Programming and Scripting

Use of sed inside perl

$string="test.binary.value"; $toggle="test.binary.value=true"; host=test.server.com my $returnCode = system ( "ssh $host 'cp -p /tmp/testfile /tmp/testfile.bkup; sed -i 's/\$string.*/\$toggle/g' /tmp/testfile'" ); cat testfile test.binary.value=false Scenario: I am trying to... (3 Replies)
Discussion started by: Tuxidow
3 Replies

10. Shell Programming and Scripting

Using sed inside shellscript

Hi All, I am trying to use sed command inside a shell script. The same sed command is working on command line, however its not working while using inside a shell script. From various sources i found , it could be done by using -i option, but its not working as well. sed... (11 Replies)
Discussion started by: gotamp
11 Replies
ath(7D) 							      Devices								   ath(7D)

NAME
ath - Atheros AR52xx 802.11b/g wireless NIC driver DESCRIPTION
The ath 802.11b/g wireless NIC driver is a multi-threaded, loadable, clonable, GLDv3-based STREAMS driver for the Atheros AR52xx (AR5210/5211/5212) chipset-based wireless NIC. The ath driver functions include controller initialization, wireless 802.11b/g infrastructure network connection, WEP, frame transmit and receive, and promiscuous and multi-cast support. DRIVER CONFIGURATION
The ath driver performs auto-negotiation to determine the data rates and mode. Supported 802.11b data rates (Mbits/sec.) are 1, 2, 5.5 and 11. Supported 802.11g data rates (Mbits/sec.) are 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48 and 54. The ath driver supports only BSS networks (also known as "ap" or "infrastructure" networks) and the "open" (or "opensystem") authentica- tion type. Only WEP encryption is currently supported. Configuration and administration can be performed through the dladm(1M) or wificonfig(1M) utilities. FILES
/dev/ath* Special character device. /kernel/drv/ath 32-bit ELF kernel module (x86). /kernel/drv/amd64/ath 64-bit ELF kernel module (x86). ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Architecture |x86 | +-----------------------------+-----------------------------+ SEE ALSO
dladm(1M), wificonfig(1M), gld(7D) ANSI/IEEE Std 802.11- Standard for Wireless LAN Technology, 1999. IEEE Std 802.11a- Standard for Wireless LAN Technology-Rev. A, 2003 IEEE Std 802.11b - Standard for Wireless LAN Technology-Rev.B, 2003 IEEE Std 802.11g-- Standard for Wireless LAN Technology - Rev. G, 2003 SunOS 5.11 14 Nov 2006 ath(7D)
All times are GMT -4. The time now is 01:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy