Extract the last directory of a pwd output

后端 未结 4 722
难免孤独
难免孤独 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:03

    Are you looking for basename or dirname?

    Something like

    basename "`pwd`"
    

    should be what you want to know.

    If you insist on using sed, you could also use

    pwd | sed 's#.*/##'
    

提交回复
热议问题