I have replaced word 'merchant
' to 'capital
' in files founded in the current directory using following command:
find * -type f -exec sed -i -e 's/merchant/capital/g' {} \;
but above command will modify the file date also, is there any way to stop file modification date?
Thanks in advance.