How do I mass replace https to http at linux command
I used to use this line
find . -type f|xargs sed -i 's#\(account[.]\)mywebsite\([.]com\)#\1mynewwebsite\2#g'
But now I just want to change all the https to http due to my certificate issue, I want to disable ssl first and rename all the https path to http
I tried to find on the link suggested but it doesn't work