0

環境変数 admin_path=/home/myfolder/server があります。ここで、シェル スクリプトの $admin_path に基づく親パスを取得する必要があります。どうすれば簡単に入手できますか?ありがとうございました

4

1 に答える 1

1

It's not entirely clear what you want, but I think you are looking for:

${admin_path%/*}

to get the value of admin_path with the trailing path component removed.

于 2013-06-24T06:25:38.267 に答える