The replace tag has no wiki summary.
0
votes
1answer
27 views
sed replace misplaces slashes
I have the following code in a LaTeX file:
for \emph{service} in \emph{host}.resources:
for \emph{file} in \emph{host}.resources:
\underline{service}.requires.add(\underline{file})
...
0
votes
1answer
52 views
Search for pattern across multiple files and replace a sub-part in all occurences
I am helping a friend with her thesis written in LaTeX and I need a quick solution for a "search and replace". Using a terminal in Linux, how can I find the following pattern:
\caption{*\cite{*}}
...
1
vote
0answers
59 views
Automatic replacement of strings in gedit
I want to replace some strings defined by me in gedit, after a word has been completed and/or the document has been saved. For example \ðrac should be replaced with \frac
How do I do this in gedit or ...
0
votes
0answers
12 views
using tops command to update NSLog statements in cocoa code
In my objective-c code base I have several NSLog statements.
eg.
NSLog(@"Here is the message without arguments");
NSLog(@"Here is the message with arguments: %s, %s","argument1","argument2");
Now ...