Commit 3e43140c authored by mhammad's avatar mhammad

Quistion1

parents
#!/bin/bash
#تحديد الكلمتان القديمة والجديدة
oldword=$1
newword=$2
postfix=$3
#ايجاد الملفات التي لاحقتها 3$ و استبدال الكلمة القديمة فيه بالجديدة
find ./ -type f -name "*.$postfix" -exec sed -i "s/$oldword/newword/g" {} \;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment