I have some strings like '/home/dir/file1/file2' , '/export/home/file1'
'/home/dir1/dir2/folder1/file'
I want to only to print the values that come after first two occurences of '/' like for first string '/home/dir/file1/file2' I want to print 'dir/file1/file2'
How to do this
Thanks