Sponsored Content
Full Discussion: Modify sed script
Top Forums Shell Programming and Scripting Modify sed script Post 302548164 by chipperuga on Wednesday 17th of August 2011 03:44:58 PM
Old 08-17-2011
I don't understand your instructions.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

sed modify problem in script

I am having problems with the following "sed" command only when it is issued within a bash script. #!/bin/bash cat config.xml | sed -e 's/yes/no/g' > newconfig.xml When I enter this command from the command line it works like a charm, but when run in a script as shown it "zero's out" my... (2 Replies)
Discussion started by: darthur
2 Replies

2. Shell Programming and Scripting

modify and use awk sed program

The following awk script creates a file b.dat. awk '{print substr($0,1,27),substr($2,index($2,"_")+1)," ",substr($0,49)}' a.dat > b.dat I need this script to be modified to also sum $3 values by distinct $1 and $2 fields. Current file W2_2009275 2 8 W2_2009275 2 7 W1_2009275 1... (3 Replies)
Discussion started by: mnnarendra
3 Replies

3. UNIX for Dummies Questions & Answers

How to use sed modify specific lines

Could anybody tell me how I can use sed to modify lines following specific lines? the file is as following: "TEST/SI1573.lab" 3670 8920 h# 8920 9530 hh 9530 10694 ih . "TEST/DR1/FAKS0/SI2203.lab" 9730 9580 h# 9580 9840 dh 9840 10652 ix 10652 11997 r ........ I want to modify the... (5 Replies)
Discussion started by: Jenny.palmy
5 Replies

4. Shell Programming and Scripting

sed: How to modify files in a complex way

Hello, I am new to sed and hope that someone can help me with the following task. I need to modify a txt file which has format like this: xy=CreateDB|head.queue|head.source|head.definition|rtf.edit|rtf.task|rft.cut abc|source|divine|line4|5|true into something like: head.queue=abc... (19 Replies)
Discussion started by: pinkypunky
19 Replies

5. Shell Programming and Scripting

Sed or Awk for modify hour in a crontab AIX

Hi, I want to modifiy the hour in the crontab AIX 5.3 for this line: Input: 00 22 * * * /outillage/script_exploit/bin/SavOffline.ksh > /dev/null 2>&1 Output: 30 20 * * * /outillage/script_exploit/bin/SavOffline.ksh > /dev/null 2>&1 With the awk or sed function through a ssh -q... (1 Reply)
Discussion started by: khalidou13
1 Replies

6. Shell Programming and Scripting

How to use sed to modify a line above or below matching pattern?

I couldn't figure out how to use sed or any other shell to do the following. Can anyone help? Thanks. If seeing a string (e.g., TODAY) in the line, replace a string in the line above (e.g, replace "Raining" with "Sunny") and replace a string in the line below (e.g., replace "Reading" with... (7 Replies)
Discussion started by: sprinner
7 Replies

7. Shell Programming and Scripting

Modify the file with awk,sed or perl

Hi All, I need help from any of you.Would be so thankful for your help. I/P DDDD,1045,161,1557,429,1694,800,1911,1113,2460,1457,2917> 1609,3113,1869,3317,2732,3701,3727,4132,5857,5107> 9004,6496 DDDD,1125,157,1558,429,1694,800,1911,1117,2432,1444,2906>... (2 Replies)
Discussion started by: Indra2011
2 Replies

8. Shell Programming and Scripting

Modify text file using sed

Hello all, I have some text files I need to do the following on: Delete banner page (lines 1-56) --I am doing this using sed Remove ^M --I am doing this using vi Remove trailer page --this can vary based on the contents of the file, it usually starts with *************************** I am... (5 Replies)
Discussion started by: jeffs42885
5 Replies

9. Shell Programming and Scripting

Modify xml using sed or awk

Hi All, I want to modify(changing the status from "on" to "off" status of Stage-element value from the below xml file using sed or awk: File Name: global.xml <?xml version="1.0" encoding="UTF-8"?> <config> <widget> <name>HTTP-POOL</name> <attributes> ... (5 Replies)
Discussion started by: wamqemail2
5 Replies

10. Shell Programming and Scripting

Using awk and sed to modify a create sql script

Hi, I have a file which contains the following data claim_src|clm_id,typ_id pat_src|pat_id prov_src|prov_id,clm_id,prov_name The first field is table name and second field is primary keys of the table Now I have three files which contain ddl of each table. clam_src.sql... (4 Replies)
Discussion started by: wahi80
4 Replies
getisax(2)							   System Calls 							getisax(2)

NAME
getisax - extract valid instruction set extensions SYNOPSIS
#include <sys/auxv.h> uint_t getisax(uint32_t *array, uint_t n); DESCRIPTION
The getisax() function sets the vector array of n 32-bit integers to contain the bits from the AV_xxx_yyy namespace of the given instruc- tion set architecture. Values for AV_xxx_yyy are as follows: SPARC AV_SPARC_MUL32 32x32-bit smul/umul is efficient AV_SPARC_DIV32 32x32-bit sdiv/udiv is efficient AV_SPARC_FSMULD fsmuld instruction is efficient AV_SPARC_V8PLUS V9 instructions available to 32-bit apps AV_SPARC_POPC popc instruction is efficient AV_SPARC_VIS VIS instruction set is supported AV_SPARC_VIS2 IS2 instruction set is supported x86 AV_386_FPU x87-style floating point AV_386_TSC rdtsc instruction AV_386_CX8 cmpxchg8b instruction AV_386_SEP sysenter and sysexit AV_386_AMD_SYSC AMD's syscall and sysret AV_386_CMOV conditional move instructions AV_386_MMX MMX instructions AV_386_AMD_MMX AMD's MMX instructions AV_386_AMD_3DNow AMD's 3Dnow! instructions AV_386_AMD_3DNowx AMD's 3Dnow! extended instructions AV_386_FXSR fxsave and fxrstor AV_386_SSE SSE instructions and regs AV_386_SSE2 SSE2 instructions and regs AV_386_PAUSE use pause instruction (in spin loops) AV_386_SSE3 SSE3 instructions and regs AV_386_MON monitor/mwait instructions RETURN VALUES
The getisax() function returns the number of array elements that contain non-zero values. EXAMPLES
Example 1: Use getisax() to determine if the SSE2 instruction set is present. In the following example, if the message is written, the SSE2 instruction set is present and fully supportred by the operating system. uint_t ui; (void) getisax(&ui, 1); if (ui & AV_386_SSE2) printf("SSE2 instruction set extension is present. "); ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Stable | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
isainfo(1), ld(1), pargs(1), attributes(5) Linker and Libraries Guide SPARC Assembly Language Reference Manual x86 Assembly Language Reference Manual SunOS 5.10 4 Oct 2004 getisax(2)
All times are GMT -4. The time now is 05:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy