i need to pass a variable value to sed command. here is the description, what i am doing.
i am assigning a value to variable :
export ALSIZE=14420
$ echo $ALSIZE
14420
now i am using that value in sed command to read file from $ALSIZE line to end of the file. and i got the error
$ sed -n '$ALSIZE,$p' /db1/u04/oradata/GG11/ggserr.log
Unrecognized command: $ALSIZE,$p ====== >>
used the variable value in "" (double quotes) still got error.
$ sed -n '"$ALSIZE",$p' /db1/u04/oradata/GG11/ggserr.log
Unrecognized command: "$ALSIZE",$p ===== >>>
i am getting response back
$ sed -n '14420,$p' /db1/u04/oradata/GG11/ggserr.log
2013-12-26 06:36:17 INFO OGG-01026 Oracle GoldenGate Capture for Oracle, dpsbprd.prm: Rolling over remote file ./dirdat/siebel/r1003911.
2013-12-26 06:43:31 INFO OGG-01026 Oracle GoldenGate Capture for Oracle, dpsbprd.prm: Rolling over remote file ./dirdat/siebel/r1003912.
2013-12-26 11:07:47 INFO OGG-01026 Oracle GoldenGate Capture for Oracle, dpsbprd.prm: Rolling over remote file ./dirdat/siebel/r1003913.
what is the mistake i am doing. could you please advice ?
The single quotes means that the '$' in $ALSIZE is expanded as a literal "\$ALSIZE". What happens if you rewrite it to:
(leaving the single quotes until after the $ALSIZE variable)?