0
votes
2answers
17 views
How to use sed to return something from first line which matches and quit early?
I saw from
http://stackoverflow.com/questions/148451/how-to-use-sed-to-replace-only-the-first-occurrence-in-a-file
How to do most of what I want:
sed -n '0,/.*\(something\).*/s/ …
0
votes
4answers
47 views
text manipulation and removal
I have text files generated by one of my tools with structure shown below.
1 line text
(space)
multiple
lines
text
(space)
multiple
lines
text
nr 2
------------------------------- …
2
votes
3answers
73 views
Strip Characters Before Period If Filename Has Prefix in Bash
I have a directory that looks like this:
pages/
folder1/
folder1.filename1.txt
folder1.filename2.txt
folder2/
folder2.filename4.txt
folder2.filename5.txt
folder3/
fil …
1
vote
3answers
60 views
Showing only the uptime from uptime [unix]
I'd like to trim the output from uptime
20:10 up 23 days, 3:28, 3 users, load averages: 3.84 1.06 0.64
so that it just shows:
23 days
I've tried using sed, but I'm not sure …
1
vote
3answers
41 views
Parse players currently in lobby
I'm attempting to write a bash script to parse out the following log file and give me a list of CURRENT players in the room (so ignoring players that left, but including players th …
1
vote
6answers
95 views
how to use sed, awk, or gawk to print only what is matched?
I see lots of examples and man pages on how to do things like search-and-replace using sed, awk, or gawk.
But in my case, I have a regular expression that I want to run against a …
4
votes
7answers
285 views
How can I delete all /* */ comments from a C source file?
I have a C file which I copied from somewhere else, but it has a lot of comments like below:
int matrix[20];
/* generate data */
for (index = 0 ;index < 20; index++)
matrix[in …
2
votes
6answers
93 views
How can I delete all lines that do not begin with certain characters?
I need to figure out a regular expression to delete all lines that do not begin with either "+" or "-".
I want to print a paper copy of a large diff file, but it shows 5 or so lin …
3
votes
4answers
98 views
Can you mass edit all files returned in a grep?
I want to mass-edit a ton of files that are returned in a grep. (I know, I should get better at sed).
So if I do:
grep -rnI 'xg_icon-*'
How do I pipe all of those files into vi …
1
vote
8answers
99 views
Bulk Insert Code Before </body> Tag in 100 Files
I'd like to insert
<?php include_once('google_analytics.php'); ?>
before the closing body tag of about 100 php files. Unfortunately the person who made the site didn't m …
0
votes
2answers
68 views
The easiest way to replace white spaces with (underscores) _ in bash [closed]
Hi, recently I had to write a little script that parsed VMs in XenServer and as the names of the VMs are mostly with white spaces in e.g Windows XP or Windows Server 2008, I had to …
6
votes
4answers
176 views
What is the difference between sed and awk ?
What is the difference between awk
and sed ?
What kind of application are best use
cases for sed and awk tools ?
3
votes
8answers
258 views
How can I delete a newline if it is the last character in a file?
I have some files that I'd like to delete the last newline if it is the last character in a file. 'od -c' shows me that the command I run does write the file with a trailing new l …
0
votes
4answers
65 views
sed regex to non-greedy replace?
I am aware of another question that is quite similar, but for some reason I'm still having problems.
I have a GC log that I'm trying to trim out the Tenured section enclosed in [] …
0
votes
1answer
80 views
sed stream editor unix linux command : how to keep retain a paragraph with a particular text string
Hi
I have managed to put text in a file by separating them by blank lines. I am trying to keep only those paragraphs that have a particular string. Though the Sed FAQ mentions a …
