I have a file which has entries as below.
/a/b/c/d/e/f
/a/b/c/g/k/l/f/j/h
/a/b/c/i/m/n/p
I need a command in Windows which would remove the '/a/b/c'
part from the file.
The output file should look like
d/e/f
g/k/l/f/j/h
i/m/n/p
I tried using the for
command with /
as the delimiter, but I couldn't get the expected result.
How can I do this?