Imagine a path like this:
/a/b/c/d/e/...
Where ...
could be any number of levels further deep, i.e., I don't know, ahead of time, whether there will be 2, 3, or 13 more level deep.
How can I, using a FreeBSD shell, e.g., /bin/sh
, extract the first "N" parts of this path? e.g., first 4 levels, so that I would get /a/b/c/d
?
You can use
cut
:Or if you are using
BASH
then you can use shell array:Then print desired elements from array: