I\'m trying to remove part of the path in a string. I have the path:
/path/to/file/drive/file/path/
I want to remove the first part /
/
One way to do this with sed is
echo /path/to/file/drive/file/path/ | sed 's:^/path/to/file/drive/::'