Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • find_err.sql for finding errors from dba_errors. Oracle
  • runon_allcdbs_find_pdbs.sh Linux/Unix
  • oracle 10g on linux Linux/Unix
  • Insert cause enqueue locks Oracle
  • Monitor Long Running Job Oracle
  • perf_today.sql Oracle
  • Oracle Statspack survival Guide Oracle
  • Flowers Resize datafiles Oracle
  • chk_space_SID.ksh Linux/Unix
  • Changing unix system clock when Oracle database is running. Oracle
  • Good link for LIO in Oracle ( Logical IOs) Oracle
  • Adding Datafile on Primary Server and Impact on Standby Server Oracle
  • ENQ: KO – FAST OBJECT CHECKPOINT tips Oracle
  • rm_backup_arch_file.ksh Linux/Unix
  • sid_wise_sql.sql 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

  • Nice Article about semaphores and init.ora Processes parameter relations Linux/Unix
  • Unix split command to split files Linux/Unix
  • Debugging Shell FIles Linux/Unix
  • move_arch_files.ksh Linux/Unix
  • How to know Number of CPUs on Sun Box Linux/Unix
  • To see mem usage and CPU usage system wide. 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 (150)
  • MYSQL (5)
  • Oracle (403)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (1)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (18)
  • rman-dataguard (26)
  • shell (151)
  • SQL scripts (349)
  • SQL Server (6)
  • Uncategorized (5)
  • Videos (0)

Recent Posts

  • Key Management in Oracle: The Core Issue: Missing Master Key12-May-2026
  • SAT Mathematics 10 questions and answer at the end.30-Apr-2026
  • top 10 AI news today30-Apr-2026
  • runon_allpdbs_show_conname.sh23-Apr-2026
  • runon_allcdbs_find_pdbs.sh23-Apr-2026
  • 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

Archives

  • 2026
  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Space padding in korn shell Linux/Unix
  • Wait.sql Oracle
  • Test Case for Inserting Multiple (2.3 Million rows in 26 Seconds) Oracle
  • Find_stale_dr.sql finding stale physical DR.. Oracle
  • V$CONTROLFILE_RECORD_SECTION reference notes. Oracle
  • Oracle Internal Good Websites 1 Oracle
  • Oracle 11g RAC on OEL 5 and Vmware 2 Oracle
  • find_log_switch.sql Find log switches in graphical manner Oracle

Copyright © 2026 pvmehta.com.

Powered by PressBook News WordPress theme