Answers for "linux replace string filename"

8

how to find and replace a string in a file using shell script

# replaces ALL(g i.e. global) ouccurences of "original_string" with "new_string", 
# in the file file_name.ext_name
sed -i 's/original_string/new_string/g' file_name.ext_name
Posted by: Guest on February-11-2021
-1

linux find and rename files with text

find . -type f -name 'Lucky-*' | while read FILE ; do
    newfile="$(echo ${FILE} |sed -e 's/\\#U00a9/safe/')" ;
    mv "${FILE}" "${newfile}" ;
done
Posted by: Guest on January-04-2021

Code answers related to "linux replace string filename"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language