Have you ever wanted to diff the HTML generated by your local server and the one you have on production? Probably not. But here’s how to do it.
diff -u <(curl http://example.com/xpto) <(curl localhost:3000/xpto)
Have you ever wanted to diff the HTML generated by your local server and the one you have on production? Probably not. But here’s how to do it.
diff -u <(curl http://example.com/xpto) <(curl localhost:3000/xpto)