Tagged Questions
4
votes
4answers
1k views
Is it possible to edit a PDF file directly?
I have a PDF file that is produced as part of a help file compilation. There is always late breaking stuff which goes into a text file (e.g. "What's new in this version" type of stuff) and while Help ...
1
vote
1answer
272 views
Add constant value to numeric XML attribute
Background
Add a constant value to numbers matched with a regular expression, using vim (gvim).
Problem
The following regular expression will match width="32":
/width="\([0-9]\{2\}\)"
Question
...
1
vote
3answers
1k views
Using sed to replace text from a list of files from find
Given the following find command:
find . | xargs grep 'userTools' -sl
How can I use sed on the results of that command?
output:
./file1.ext
./file2.ext
./file3.ext