Tagged Questions
2
votes
2answers
30 views
extract a specific word in bash
I have some lines in below forms:
-rw-r--r-- sten/sefan anonymous 8593 2011-12-05 18:28 8M
-rw-r--r-- sten/sefan 8593 2011-12-05 18:28 8M
How can I get the 8593 one-liner?
The lines are retrieved ...
1
vote
7answers
45 views
search a string in a files if it match replace another string in the same line with some string
h -t 9.641909323 -s 0 -d 29 -p cbr -e 1078 -c 2 -a 0 -i 169 -k MAC
r -t 9.650534114 -s 29 -d 29 -p cbr -e 1020 -c 2 -a 0 -i 169 -k MAC
+ -t 9.650544114 -s 29 -d -1 -p ACK -e 38 -c 2 -a 0 -i 0 -k MAC
...
1
vote
5answers
45 views
How to use sed to extract substring
I have a file containing the following lines:
<parameter name="PortMappingEnabled" access="readWrite" type="xsd:boolean"></parameter>
<parameter name="PortMappingLeaseDuration" ...
4
votes
6answers
131 views
Shell script to get list of defined users on Linux?
I put this together, but it sucks: (e.g. magic numbers in there, text parsing.. boo!)
awk -F: '{if($3 >= 1000 && $3 < 2**16-2) print $1}' /etc/passwd
What's the proper way to do this?
...
1
vote
3answers
63 views
how to find and delete below line using shell script
Below line has printed in my all php project pages because of malicious attacks.Now think is how i can find and delete this lines using shell script
function_exists('date_default_timezone') ?
...
0
votes
5answers
35 views
Linux Command line Help | extract specific parts from file
Suppose I have a log which has data in the format given below
Time number status
2013-5-10 19:18:43.430 123456 success
2013-5-10 19:28:13.430 134324 fail
2013-5-10 19:58:33.430 ...
0
votes
3answers
47 views
Assign a header to multiple files, Linux
A header file is produced by running the main script and its content changes anytime I run the program . I want to assign the content of header file to other three files as their header. The content ...
0
votes
1answer
36 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
...
0
votes
3answers
45 views
Insert content of a file to another file on Linux
I have two files. I want to insert the content of the first file(file1) to the second file (file2) between some codes (second file is a script). For example the second file should look like this
...
0
votes
2answers
46 views
awk create a bulk MySQL insert from csv
I have a huge CSV file with data, I'm trying to generate mySQL bulk insert statement.
Data presented as follows in CSV
...
0
votes
3answers
42 views
Why sed yields two same line?
I wanted to replace one line using sed, but got two same lines:
$ sed '50s/false/true/p' ./src/com/android/quicksearchbox/SearchableSource.java >SearchableSource.java.1
$ diff ...
0
votes
2answers
37 views
transform csv file to mysql insert statement
I'm trying to generate MySQL file from CSV data
90927744|1356976814398|0|1356976815339|18563182571|18563182571|18568753009|18563574221
is there is a way that I could use awk or sed to generate ...
1
vote
3answers
102 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 ...
-3
votes
1answer
65 views
linux - how to use sed with regex
I run linux find command to collect file paths.
I want to use sed on each file path with the following pattern -
input: \dira\dirb\abc\def\aa.txt
output: http:\\something\abc\def\aa.txt
...
0
votes
2answers
51 views
Formatting Text into separate files
I have a slight problem and do not know where to start.
I have a text file that contains the following information.
MINI COOPER 2007, 30,000 miles, British Racing Green, full service history, ...
0
votes
1answer
40 views
Bash doesn't create files in nested scripts
When I run the first script that calls a second script no files are created.
However, when I call the second one directly with the same code as it appears on the "echo", it runs as expected.'
...
-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
73 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 ...
1
vote
1answer
56 views
awk increment or change value of a column in a file
I have a bash script that runs a backup job and produce a csv file.
90927597|1356976813998|90927598
How can I increment / change the value of the 3rd column of my CSV file? ( I actually just want ...
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 ...
0
votes
5answers
62 views
How to parse numbers from an array in codes like this?
I need to parse numbers from codes like this:
p1 <- c(1, 2, 100, 23, 0.12, 0.03, 0)
p2 <- c(100, 200, 1, 23, 0.12, 0.03, 0)
p30 <- c(100, 200, 1, 23, 0.12, 0.03, 0)
p300 <- c(100, 200, 1, ...
1
vote
3answers
57 views
Why does this sed command to match number not work?
My command is like this:
echo "12 cats" | sed 's/[0-9]+/Number/g'
(I'm using the sed in vanilla Mac)
I expect the result to be:
Number cats
However, the real result is:
12 cats
Does anyone ...
1
vote
3answers
56 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
6answers
48 views
awk or sed to change column value in a file
I have a csv file with data as follows
16:47:07,3,r-4-VM,230000000.,0.466028518635,131072,0,0,0,60,0
16:47:11,3,r-4-VM,250000000.,0.50822578824,131072,0,0,0,0,0
...
1
vote
1answer
46 views
Parallel sed with group capture
I have to process a big file, and have been reading about parallel command to try to use more than 1 core processor when using sed, sort and so on. So I first wanted to change first line of every four ...
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
58 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 ...
0
votes
3answers
52 views
How to delete nth character in a file using sed
I have to delete a character at nth position in a big file. Vi hangs for such a big file. I know there will be some simple command in sed to do so. But, I find it difficult to understand sed scripts ...
1
vote
3answers
102 views
how to merge two files consistently line by line
I have two files (file1.txt & file2.txt ) , files are only examples .
How to merge the two files , in order to create the file - merge_files.txt as example 3
I writing now ksh script , so merge ...
1
vote
3answers
74 views
Replace from nth occurrence of pattern till the end of line with sed
For example:
/some/long/path/we/need/to/shorten
Need to delete after the 6th occurrence of '/', including itself:
/some/long/path/we/need
Using sed I came up with this solution, but it's kind of ...
-5
votes
0answers
35 views
extract data from a string and save to a file [closed]
suppose I have a very very long string which contains key-value set. The size of the file contains the string is very very large. I wanted to extract only part from the string and store it into a ...
1
vote
1answer
52 views
Using sed to show exact location of file
My command is :
[root@my /]# grep -lr --include=*version.php "$wp_version"/home/draka/www/
/home/draka/www/wp-content/version.php
/home/draka/www/wp-content/themes/version.php
...
0
votes
2answers
56 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
55 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
50 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
3answers
61 views
modifying a text file with regex
I have a source file containing a specific string, and would like to replace the first (in this case, only) instance of that string with the contents of another file. Something like:
> cat ...
1
vote
1answer
45 views
Find “string1” and delete between that and “string2”
I'm using command line and sed. I need a command to delete from multiple files recursively.
I have left comments such as:
<!--String 1 -->
Code to delete goes here
<!--String 2 -->
So ...
0
votes
1answer
37 views
Replace a text with a variable (sed)
How can I do this?
sed -i 's/wiki_host/$host_name/g' /root/bin/sync
It will replace wiki_host with the text $host_name.
But i want to replace it with the content of the variable..
I tried it with
...
1
vote
2answers
52 views
sort a file based on a column in another file
I have two files both in the format of:
loc1 num1 num2
loc2 num3 num4
The first column is the location and I want to use the order of the locations in the first file to sort the second file so ...
0
votes
1answer
49 views
using cpp preprocessing replaces 0x0D with 0x0A in a string
At my workplace we are using an old proprietary language in combination with some C macro's. In order to compile this code it has to be heavily groomed using a script and I was hoping to move to ...
0
votes
3answers
77 views
linux + how to delete only the matched number from line
How to delete only if number is full matched
I wrote simple sed command ,the example below by sed ,
my target is to delete the number "1" from the list $NUMBERS
what I need to add to my sed ...
0
votes
1answer
42 views
How replace many lines at the same file with sed?
I would like to replace some lines of tomcat server.xml file with sed command.
<Server port="8005" shutdown="SHUTDOWN">
for
<Server port="8205" shutdown="SHUTDOWN">
and
...
0
votes
4answers
50 views
Extract string from output command
My program output is as the following:
# myprogram list
val
val.dev
val.int
val.int.p1
val.int.p2
val.int.p3
val.int.p4
val.int.p5
val.dev.p6
I want to extract from the above output only strings ...
0
votes
2answers
46 views
sed match date format Apr 25, 2013
Can anyone help with a search & replace script (sed) to match a date Feb 24, 2009 and replace it with a white space?
sed 's/ \(Jan\|Feb\|Mar\|Apr\|May\|Jun\|Aug\|Sep\|Oct\|Nov\|Dec\) ...
0
votes
2answers
92 views
sed find and replace line containing string after IP address
I'm trying to use sed to find a line containing a string after an IP address and replace that line. To illustrate, I have a text file like so ...
192.168.10.155 Mike
8.8.8.8 Googley
123.231.123.3 ...
2
votes
1answer
68 views
Sed match exact
I'm currently using 's/string/new_string/g' to go through some CSV files, however I'm running into difficulty in the following scenario:
I want to replace instances of '192.168.0.11', however it's ...
0
votes
2answers
77 views
Sed remove time stamp from file with regex
I'm trying to use sed to delete a pattern from an html file. The time stamp consist of a 1-2 digit number a four letter word and then the word ago
example:
25 mins ago
or:
1 hour ago
and so on. ...
0
votes
2answers
56 views
find some text aa and then find first appearance of text bb after aa
The whole text file is like below:
aa
...
bb
...
bb
...
aa
...
bb
...
After line aa there will be one or more lines of bb.
I tried the command below which will fine all lines aa and the line above ...
0
votes
3answers
63 views
search a keyword, if it matches pick the word besides to it
255.255.0.0(queue=banglore)
255.255.0.10(queue=hyderabad)
255.255.1.2(cal = 10)
my Script is
command | awk '{print $3}' | sed '1,9d'
my output is nearly like as shown above in linux ...
0
votes
4answers
69 views
get 1 line with the same field in a file using shell script
I have a file, with contents like:
onelab2.warsaw.rd.tp.pl 5
onelab3.warsaw.rd.tp.pl 5
lefthand.eecs.harvard.edu 7
righthand.eecs.harvard.edu 7
planetlab2.netlab.uky.edu 8
...





