Commit c8825d06 authored by mhammad.essa's avatar mhammad.essa

Delete replaceworld_script.bash

parent 545295f1
#!/bin/bash
# تحديد الكلمات القديمة والجديدة
oldword=$1
newword=$2
# البحث والاستبدال في الملفات التي تنتهي بلاحقة txt
find . -type f -name "*.txt" -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