I have a path that is stored in a variable
$FULLPATH="/this/is/the/path/to/my/file.txt"
I also have another variable containing a partial path
$PARTIAL="/this/is/the/"
I want to remove the partial path from the full path so that I am left with:
path/to/my/file.txt
What's the best way to do this?