Extract the last directory of a pwd output

后端 未结 4 699
难免孤独
难免孤独 2020-12-28 12:57

How do I extract the last directory of a pwd output? I don\'t want to use any knowledge of how many levels there are in the directory structure. If I wanted to use that, I c

4条回答
  •  囚心锁ツ
    2020-12-28 13:06

    Should work for you: pwd | rev | cut -f1 -d'/' - | rev

    Reference: https://stackoverflow.com/a/31728689/663058

提交回复
热议问题