I am trying to use sed to remove these double backslashes in the front of this string so that this:
//s3.amazonaws.com/umdheader.umd.edu/app/js/main.min.js
will become:
s3.amazonaws.com/umdheader.umd.edu/app/js/main.min.js
so far I have it where it can remove one through the com
sed 's/^\///g' output
but i need to remove two! please let me know thanks :)