Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
複数の親を含む現在のディレクトリを含む変数があります。例えば:
$ pwd /Users/simont/repositories $ echo $current ~/repositories
この質問から現在のディレクトリを除くすべてを取り除くことができます:
onlycurrent=${$(current)##*/}
私は反対のことをしたい: この変数から現在のディレクトリを削除します (そのため、 のみが含まれます~/)。これどうやってするの?
~/