How to get first N parts of a path?

1.8k Views Asked by At

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?

1

There are 1 best solutions below

3
On BEST ANSWER

You can use cut:

s='/a/b/c/d/e/f/g/h/i/j/k'
echo "$s" | cut -d/ -f1-5
/a/b/c/d

Or if you are using BASH then you can use shell array:

IFS=/ arr=($s)

Then print desired elements from array:

IFS=/ echo "${arr[*]:0:5}"
/a/b/c/d