Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • find_arc.sql Oracle
  • RAC with RHEL4 and 11g Oracle
  • Distributed Transaction Troubleshooting. Oracle
  • How to stop OCSSD Daemon Oracle
  • upload.html PHP/MYSQL/Wordpress
  • checking connectivity between two servers Linux/Unix
  • All About Trace Fils Oracle
  • Composite Index creation tip from Vivek Oracle
  • Create type and Grant on it. Oracle
  • process id based files and processes Linux/Unix
  • find_pk.sql /* Find Primary Key */ Oracle
  • Some useful Unix Commands Linux/Unix
  • MYSQL for Oracle DBA MYSQL
  • Global Unique Identifier Generation in Oracle 9.2 SYS_GUID() Oracle
  • AWR settings- MMON is not taking snapshot. Oracle

Search and replace pattern

Posted on 07-Nov-2007 By Admin No Comments on Search and replace pattern

#!/bin/ksh

file_name=$1

old_templet=$2

new_templet=$3

# Loop through every file like this

for file in file_name

do

cat $file | sed “s/old_templet/new_templet/g” > $file.new

#do a global searce and replace and put the results

mv $file.new $file

#rename $file.new to original name of file

done

If you want to replace single pattern with a new pattern witn newline use following:

modify the sed part to

sed ‘s/old_template/new_templ1^Jnew_templ2^Jnew_templ3/’ tst

here the ^J

is then a ctrl-V and hit the return key, u ll c a ^J character

besides instead of doing the cat and redirecting to one file and then moving the new file to old u can do

perl -i -ne “s/old_template/new_templ1nnew_templ2nnew_templ3/” file1

file1 will be overwritten with the desired result , use the n instead of ^J in perl

Linux/Unix, shell

Post navigation

Previous Post: create a folder in multiple places
Next Post: adding new line after specific pattern using sed

Related Posts

  • remove archfiles only when it is applied to DR rm_archfiles.sh Linux/Unix
  • How to know Number of CPUs on Sun Box Linux/Unix
  • Jai Shree Ram Linux/Unix
  • To see mem usage and CPU usage system wide. Linux/Unix
  • .profile Linux/Unix
  • scripts to take listener.log backup Linux/Unix

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Categories

  • Ansible (0)
  • AWS (2)
  • Azure (1)
  • Django (0)
  • GIT (1)
  • Linux/Unix (149)
  • MYSQL (5)
  • Oracle (400)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (1)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (18)
  • rman-dataguard (26)
  • shell (150)
  • SQL scripts (348)
  • SQL Server (6)
  • Uncategorized (3)
  • Videos (0)

Recent Posts

  • Running PDB on single node in RAC09-Apr-2026
  • find_arc.sql09-Apr-2026
  • pvm_pre_change.sql08-Apr-2026
  • find_encr_wallet.sql08-Apr-2026
  • find_pdbs.sql08-Apr-2026
  • Creating a Container Database using dbaascli08-Apr-2026
  • track_autoupgrade_copy_progress.sql01-Apr-2026
  • refre.sql for multitenant01-Apr-2026
  • prepfiles.sh for step by step generating pending statistics files10-Mar-2026
  • tracksqltime.sql05-Mar-2026

Archives

  • 2026
  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • FGA Part-I Oracle
  • Good Oracle Architecture In Short and point to point Oracle
  • Implementing Listener Security Oracle
  • get_vmstat_linux Oracle
  • plan10g.sql Oracle
  • load SPM baseline from cursor cache Oracle
  • proc.sql Oracle
  • Running some SQL on multiple databases connecting using monitoring userid and password Linux/Unix

Copyright © 2026 pvmehta.com.

Powered by PressBook News WordPress theme