Sponsored Content
Top Forums Shell Programming and Scripting Please help: Build a sed command and execute it in a script Post 302216151 by gugs on Friday 18th of July 2008 05:29:15 AM
Old 07-18-2008
The command appears to execute OK. See below I have attached the output from debug:

+ Range1=70225547_1215781581748
+ Range2=
+ a='sed -n /'
+ b=/,/
+ c=/p
+ echo 'sed -n /70225547_1215781581748/,//p'
++ grep sed temp.txt
+ sedcmd='sed -n /70225547_1215781581748/,//p'
+ cat test1.txt
++ sed -n /70225547_1215781581748/,//p
+ '<_05_1:MessageIdentifier>ERR:70225547_1215781581748</_05_1:MessageIdentifier>
' '</_05:ReceiveRequest><?xml' 'version="1.0"' 'encoding="UTF-8"?><error:Excepti
on' 'xmlns:error="hhtp/messages/exception/2006-06"' 'xmlns
:xsi="http://www.w3.org/2001/XMLSchema-instance"' 'SchemaVersion="1.0"><error:Na
me>ABC</error:Name><error:Code>001</error:Code><errorSmilieetail>An' error occured
whilst trying to process a routing request, see attached exception list for 'det
ails</errorSmilieetail><_05_1:MessageIdentifier>ERR:70225547_1215781581748</_05_1:MessageIdentifier>: No such file or directory
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to build a command into a string rather than execute the command

I'm trying to populate a command line into a variable. It appears to be executing, instead. Here's an example: mycmd='' if ...; then $mycmd='sudo ' fi $mycmd=$mycmd 'sed -i prev s/aaa/bbb/' $myfile res=`$mycmd` (I'm also not sure of the best way to execute the command from the... (1 Reply)
Discussion started by: littlejon
1 Replies

2. Shell Programming and Scripting

how to execute a sh command from a csh script

Hi everyone, I have a csh script that works fine but the output of an rsh command is different if I use boune shell instead cshell. Is there the possibility to execute only this command in bourne shell from a script declared cshell? Thanks Christian (2 Replies)
Discussion started by: bonovox
2 Replies

3. Shell Programming and Scripting

How to build a command in a script

Hi All I am trying to build a script that will take data from a tab separated file and use that to split up a quicktime file. So far the code is as follows #!/bin/sh #test parsing of data #fix excel file output returns cat $1 | tr "\r" "\n" > $1.fix printf "\n" >> $1.fix mv $1.fix $1 ... (3 Replies)
Discussion started by: babajuma
3 Replies

4. Shell Programming and Scripting

exec a build command (adduser) in a script

Hi, With a awk script i create a "adduser line" $ cat /tmp/tmp.ldif | awk -f ldif2adduser.awk adduser --uid 1002 --gid 1000 --gecos "ROUSSIN Guy" --home /homeL/guy --shell /bin/bash --disabled-password guy If i cut and paste this line, all is fine. But in a shell script i get errors : ... (2 Replies)
Discussion started by: guyr
2 Replies

5. Shell Programming and Scripting

Execute sed altered script

Man...no one answered my last two posts...Oh well, so hey guys i have a script that i'm wanting to put a # on a certain line, and then execute the script but not write it to the script. So far I'm doing it the dirty way with: sed -i -e "s/^rm/\#rm/" -e "s/^tar/\#tar/" /path/to/file ... (3 Replies)
Discussion started by: DC Slick
3 Replies

6. Shell Programming and Scripting

When i am trying to execute export command within a shell script it is saying command not found.

I am running the export command within a view to use that value inside my build script. But while executing it it is saying "export command not found" My code is as follows: -------------------------- #!/bin/sh user="test" DIR="/bldtmp/"$user VIEW="test.view1" echo "TMPDIR before export... (4 Replies)
Discussion started by: dchoudhury
4 Replies

7. Shell Programming and Scripting

Script runs but does not execute rm -rf command

Hi! First off I'm no bin/bash script writer! :( I can make heads and tales of it from the php experience I have and that's all. Now I managed to piece this script together to go look at directory and remove files that are +60 days. It's finding the files but its not removing them. I... (11 Replies)
Discussion started by: MrBiggz
11 Replies

8. Shell Programming and Scripting

Build.xml invocation by Build Script

Hi I have a build.xml file and I can run it on Windows via cmd. Now I want to write a script to invoke the same. Is there a way to do this? (1 Reply)
Discussion started by: ankur328
1 Replies

9. Shell Programming and Scripting

sed working on command line but file unchanged when execute with Shell script

I have a simple task to replace unix line feed end of line characters with carriage returns. When I run the following “change file in place” sed instruction from the command line all the Line feeds are successfully replaced with Carriage returns. sed -i 's/$/\r/' lf_file.txt But that same... (1 Reply)
Discussion started by: hawkman2k
1 Replies

10. Shell Programming and Scripting

Execute ssh command with additional terminal command to any remote user not working script

Hello i am having an issue with bash script and this is the code now=$(cat hosts1.txt | awk '{print $2;}') while read n ;do ssh root@$now 'useradd test1; echo -e "test1\ntest1" | passwd test1 && echo "test1 ALL=(ALL:ALL) ALL" >> /etc/sudoers' When i execute only part with cat, it... (8 Replies)
Discussion started by: tomislav91
8 Replies
APC_ADD(3)								 1								APC_ADD(3)

apc_add - Cache a new variable in the data store

SYNOPSIS
bool apc_add (string $key, mixed $var, [int $ttl]) DESCRIPTION
array apc_add (array $values, [mixed $unused = NULL], [int $ttl]) Caches a variable in the data store, only if it's not already stored. Note Unlike many other mechanisms in PHP, variables stored using apc_add(3) will persist between requests (until the value is removed from the cache). PARAMETERS
o $key - Store the variable using this name. $keys are cache-unique, so attempting to use apc_add(3) to store data with a key that already exists will not overwrite the existing data, and will instead return FALSE. (This is the only difference between apc_add(3) and apc_store(3).) o $var - The variable to store o $ttl - Time To Live; store $var in the cache for $ttl seconds. After the $ttl has passed, the stored variable will be expunged from the cache (on the next request). If no $ttl is supplied (or if the $ttl is 0), the value will persist until it is removed from the cache manually, or otherwise fails to exist in the cache (clear, restart, etc.). o $values - Names in key, variables in value. RETURN VALUES
Returns TRUE if something has effectively been added into the cache, FALSE otherwise. Second syntax returns array with error keys. EXAMPLES
Example #1 A apc_add(3) example <?php $bar = 'BAR'; apc_add('foo', $bar); var_dump(apc_fetch('foo')); echo " "; $bar = 'NEVER GETS SET'; apc_add('foo', $bar); var_dump(apc_fetch('foo')); echo " "; ?> The above example will output: string(3) "BAR" string(3) "BAR" SEE ALSO
apc_store(3), apc_fetch(3), apc_delete(3). PHP Documentation Group APC_ADD(3)
All times are GMT -4. The time now is 10:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy