Tagged Questions
0
votes
2answers
40 views
Replacing with sed wont work
I have a file called "washington", with capital spelled in 4 different
ways: Capital, capital, Capitol, capitol. Use the "sed" command
to replace all of them at once, with the correct spelling: ...
0
votes
3answers
42 views
Unix sed command [closed]
I have a file foo.txt containing
12345
123
123456
how do I make a sed command which puts the middle numbers in parenthesis?
so it would look like
1(234)5
1(2)3
1(2345)6
0
votes
1answer
33 views
Shell script handle string with sed
I have a text file, each line is one or more file paths separated with space, all the file has suffix dl, e.g.
/some/path/file.dl
/some/other/path/file2.dl /some/other/path2/file3.dl
...
2
votes
3answers
44 views
appending a line after there is match for 2 pattern in Unix shell scripting
I have a file like
nithin shetty
sachin shetty
pavan shetty
In this file i want to append "HELLO THIS IS ME",next line to the pattern "shetty". But the condition is that if the line matches for ...
-3
votes
1answer
34 views
Create a new file based on matching between two files
I am having two files
First file is in this format. Each line starts with unique id (in this case P22465)
P22465 DB DB; EC.31.1.1; the annexin (annexin) group.
Second file is in this ...
1
vote
3answers
97 views
awk save modifications inplace
I'm learning awk and I would like to know if there is an option to write changes to file, similar to sed where I would use -i option to save modifications to a file.
I do understand, that I could ...
0
votes
3answers
28 views
Get only files committed info in svn log -verbose
How to get only the files committed as the output from svn -verbose
svn log -v . -r 101
------------------------------------------------------------------------
r101 | username | 2013-05-10 ...
-1
votes
3answers
54 views
Need to convert the below awk command into sed [duplicate]
I need to convert the below awk command into sed,
awk -F ',' '$2 ~ /^ *[0-9]*(\.[0-9]+)?" *$/{sub(/"/, "", $2); print $2}'
Below is my input file:
sample.txt:
3",3"
6-position,6-position
7' 4" to ...
1
vote
4answers
72 views
Find and remove in unix(Updated)
Below is my input file:
sample.txt:
3"
6-position
7' 4" to 10' 3-1/2"
4.8"
Adjustable from 99" to 111" - max 148
and in the output I only need 3, i.e.
output.txt:
3
4.8
So basically I need to ...
0
votes
1answer
30 views
Delete specific line up to the last
I was reading this question on removing specific lines, but how about from a specific line up to the end of the file?
My guesses (wrong though):
sed -e '2d-$d' foo
while this removes the 2nd and ...
1
vote
1answer
34 views
Remove rows in a csv which has a specific entry in one column and entries in other columns are repeated
I have stumbled upon this problem, which I solved, by hook or by crook. But I need your help in a precise solution. Being a beginner in awk/sed, I could not solve it with a one liner (which I am sure ...
1
vote
1answer
41 views
Sed command giving unexpected result
Below is the shell script I am trying to find the meaning.
sed 's/19984 $/98400 /' | sed 's/19992 $/99200 /'
I expect 19984 $ will get replaced with 98400 and this string will be passed to next sed ...
1
vote
3answers
52 views
delete a line if a condition occurs using awk or sed
just need your help with this one. i want to delete a line if this format occurs using either awk or sed:
BSC+number BSC+number
For example:
BSC112 BSC112
core tag
red ...
0
votes
1answer
29 views
Substitution of a string with another string
can anybody please tell me what does this command precisely do :
sed -e 's/(return status = 0)//g' -e 's/\-//g' | sed 's/ //g'
I am not able to understand which string does this command substitute ...
0
votes
2answers
45 views
I tried various cut commands but unable to get the output I desire
cat DecisionService.txt
/MAGI/Household/MAGI_EDG_FLOW.erf;/Medicaid/MAGI_EDG_FLOW;4;4
/VCL/VCL_Ruleflow_1.erf;/VCL/VCL1_EBDC_FLOW;4;4
/VCL/VCL_Ruleflow_2.erf;/VCL/VCL2_EBDC_FLOW;4;4
I tried this:
...
0
votes
1answer
37 views
sed command to serch string and append a line after searched string
I have a file test, with the content
Hi
Hello
I am good.
My requirement is I have to write a shell script to search Hello sting in the file test and add a new line after it with the content got ...
3
votes
4answers
73 views
Adding text using SED
i am working with a task right now, manipulating text in Unix, but i have no idea how i will do it. I am planning to use sed. this is wat i am trying to do.
I have this text.
BS111
xxxxx
yyyyy
...
1
vote
2answers
55 views
Delete empty lines using SED [closed]
need your help with this one.
I am trying to delete empty lines using sed
sed '/^$/d'
but i have no luck with it.
for example I have this lines:
xxxxxx
yyyyyy
zzzzzz
and i want it to be ...
2
votes
2answers
48 views
Shell script - sed doesn't work
I have:
test.txt:
version-1
version-1
ori.sh:
old="version-1"
new="version-2"
sed -i .bak 's/${old}/${new}/g' test.txt
when running ori.sh, nothing happens. I would expect that test.txt would ...
1
vote
1answer
82 views
Matching zero or more characters in sed
I was practicing some commands using sed when I was confused by the output of the following command:
echo 'first:second' | sed 's_[^:]*_(&)_g'
My question is: Why would this command only wrap ...
0
votes
5answers
77 views
How to return to process a previous row if your script is processing line-by-line?
Here is my sample list:
AAA BBB CCC1
DDD EEE FFF1
GGG HHH III1 <----- I want to remove this
GGG HHH III3 >>updated <----- I want to keep this
JJJ KKK LLL7
As I'm traversing ...
0
votes
2answers
55 views
How to use sed to replace 3 letter words?
I need to use sed to replace 3 letter words that end with og, with the word frog. I thought this would work:
sed 's/?og/frog/' filename
But it does not?
1
vote
3answers
53 views
Remove quotes sed
I have a file with thousands of records pipe delimited with each field enclosed by quotes. I basically need to read the line and write the line with the quotes removed to a new file.
What is the ...
-1
votes
1answer
48 views
How to convert dots to dashes on a column in a csv file [closed]
I have an ExcelSheet column with dots in it as shown below
Is it possible to conver the dots to dashes in that CSV file for that 3rd column
using sed?
I have third column in which dots are ...
0
votes
1answer
39 views
How to replace n occurance in file using sed?
I am working on shell scripting and automation,i want to fulfil cetain tasks without writing more code.
below is sample xml of web service, i want to hit below request (Data.xml) with changing ...
-1
votes
2answers
34 views
remove particular lines from a file
I have a a file like:
NBU82
-------
PBW99
-------
PBE84
-------
PBW110
APSW1474
-------
TSMTBL
CTTRBAPCTRK01
WEBED0075
-------
PBW132
-------
I want to remove the ones which are empty (without any ...
2
votes
2answers
43 views
manupulating a string to create directories in unix
I want to take a word as input and creating consecutive directories using the letters of this word in unix shell. I tried sed, awk and fold commands but did not obtaiın any useful result. Any advice?
...
1
vote
3answers
41 views
search a keyword in file and replace line next to it
I have a file which requires modification via a shell script.
Need to do the following:
1. search for a keyword in the file.
2. replace the next line to this keyword with my supplied line text.
for ...
0
votes
4answers
133 views
How to print number of particular columns in shell script?
I have a text file temp1 and say it has more than 20 columns and it has numerical values like as follows,
1,0,3,0,5........,
1,0,5,0,8........,
3,0,6,0,3........,
5,0,6,0,4........,
...
0
votes
6answers
42 views
Remove part of the path in shell
echo "/dir1/dir2/filename.txt" | sed ????
What should be the Sed expression to get the output as
/dir1/filename.txt
If there is any other simpler way to achieve this, that is also welcome.
1
vote
4answers
64 views
Unix command for replacing distinct strings
I have this sed command:
sed 's/old/new/g' file.txt
but it also replaces the old inside the string 'folder'. how can i replace the string if there is not a character at it's left or right?
1
vote
3answers
41 views
Using sed between specific lines only
I have this sed command for removing the spaces after commas.
sed -e 's/,\s\+/,/g' example.txt
How can i change it that, it will make the modification between only specific line numbers.
(e.g. ...
1
vote
3answers
99 views
to grep a pattern from file compare contents with another file and replace
I want to grep version number in one file and replace it in another file. I want to grep 4.3.0.5 in file 1 and replace it in File 2 at 4.3.0.2. I have the below command to get the number , but how can ...
1
vote
5answers
59 views
Join broken lines with perl/awk
I have a huge file with sql broken statements like:
PP3697HB @@@@0
<<<<<<Record has been deleted as per PP3697HB>>>>>>
FROM sys.xtab_ref rc,sys.xtab_sys f,sys.domp ...
3
votes
2answers
70 views
How can I get a range of line every nth interval using awk, sed, or other unix command?
I know how to get a range of lines by using awk and sed.
I also do know how to print out every nth line using awk and sed.
However, I don't know how to combined the two.
For example, I have a file ...
0
votes
2answers
40 views
Remove characters in a line with sed
Let's suppose I have the following string:
variable number of characters -> information information information WORD: info
How can I get rid of everything before 'information' and after the last ...
1
vote
0answers
89 views
Make sed not buffer by lines
I'm not trying to prevent sed from block-buffering! I am looking to get it to not even line-buffer.
I am not sure if this is even possible at all.
Basically there is a big difference between the ...
2
votes
3answers
81 views
Unix : saving a sed command in a variable, to echo it, then execute it
Im very new with unix scripts, so sorry for mistake I may say :)
I would like to execute a "sed" command.
I would like first to echo the command that will be executed.
To do so, I save the command in ...
0
votes
5answers
75 views
Replace one letter in string
I have some text file on unix:
[{"creation_time":"2013-04-18 12:03:33","id":255,"type_id":100,"workflow":167000440},
{"creation_time":"2013-04-18 ...
0
votes
4answers
40 views
Error while passing variables in sed
My script:
while read start_val
do
end_value = "$start_val+10" | bc
sed -n '"$start_value","$end_value"d' <file>
done < in_file
Actually I want to print the lines of a file using the ...
0
votes
2answers
62 views
What's wrong with my sed regex
I have a sed command to replace json key-value pairs in the format
"XXXXX" : "YYYYY"
or
"XXXXX" : YYYYY
Here is my sed command,
sed -i 's/\("$\$XXXX\$\$\"\s*:\s*\"\)[^\"]*/\1YYYY/'
Now ...
0
votes
4answers
30 views
Recursive replace of dynamic values
I want replace the ID value in below text file. present it is from 1 to 200. I want it to start from 201 to 400.
test.txt
paraCR="0566 and 0675" ID="1"
paraCR="0566 and 0675" ID="2"
.
.
...
0
votes
2answers
54 views
Deleting strings with Sed regex
I would like to do a string replacement on the command line. I can do this in Python, but it would be easier for my workflow if I just do this in Unix. Currently I'm trying to get this to work with ...
1
vote
2answers
82 views
Subtract the Values of Two Columns Using Awk or Bash?
Here's my file:
$ cat myfile.txt
48700039|09:39:58|09:40:34
48700040|09:59:12|09:59:42
48700041|10:01:08|10:05:47
48700042|10:50:53|10:51:24
I want to subtract column 2 from 3, so my desired ...
1
vote
2answers
37 views
sed path parsing is not working
pwd | sed "s%^\(/[^/]*/\).*?\(/[^/]+\)$%\1...\2%"
I am not sure why this does not work. I have tried both the greedy and non greedy star after the first capture group. I am not even using lookaheads ...
0
votes
3answers
47 views
remove colon and - between numbers
I have a file like this:
chr1:34610-36081 1.20286
chr1:69090-70008 0.0392553
chr1:321083-321115 0
chr1:321145-321207 85.0555
chr1:367658-368597 0.114414
And I ...
1
vote
2answers
29 views
Regex for ^A and ^S ? Not able sed or grep it?
I have a file which contains this line.
Input
sls="N" stnid="armID"
sls="N" stnid="C-ARM #11 w^Aw^Aw^A^Sg^Aw"
sls="N" stnid="virtualID"
For I which I want an output like
sls="N" stnid="armID"
...
0
votes
2answers
38 views
how to replace content of specified column in a huge file using Unix Command
I have a huge file around 10 GB. And I want to replace its 35th column (separated by ;). Since, its a huge file, opening file in an editor is not an option. I want to do replace in all the lines of ...
0
votes
3answers
41 views
How to copy data in a file into a directory OR copy the command output into directory
How to copy the output of this command into the other directory folder ?
cd folder2
cp `ls | sort -k1.5 | head -8` /folder1/
2
votes
5answers
59 views
Finding file names without a specified character
Is there a good regex to find all of the files that do not contain a certain character? I know there are lots to find lines containing matches, but I want something that will find all files that do ...

