Christopher Juckins

SysAdmin Tips, Tricks and other Software Tools

User Tools

Site Tools


perl_replace_string_inline

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
perl_replace_string_inline [2025/03/20 19:33] – removed - external edit (Unknown date) 127.0.0.1perl_replace_string_inline [2025/03/20 19:33] (current) – ↷ Page name changed from replace_string_inline to perl_replace_string_inline juckins
Line 1: Line 1:
 +==== Inline string replacement with Perl ====
  
 +<code>
 +perl -p -i -e 's/5005P/500P /g' /path/to/files/filename_date_2015*.txt
 +
 +perl -p -i -e 'BEGIN{undef $/;} s/.*<pre>//smg' history_file.txt
 +</code>