Horje
linux find and rename files with text Code Example
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 




Shell

Related
postgresql user permissions to database Code Example postgresql user permissions to database Code Example
linux distributions command line Code Example linux distributions command line Code Example
linux print system info Code Example linux print system info Code Example
install babel language Code Example install babel language Code Example
free code camp offline Code Example free code camp offline Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10