単語の前の内容を削除するには、ifを使用してください。

単語の前の内容を削除するには、ifを使用してください。

台本を書いています。次のパスを印刷しようとしています/example/example/file。私が確認するものが / iで始まると、次のように見える変数のパスは印刷されませんpath=/example/example。しかし、aで始まらない場合は、 / パスを追加します。私が望むのは、ファイルの前のパスを削除することです。

If it starts like this:

/example/example/file.example

I want it to look like this

file.example

if文でこれをどのように実行できますか?

ベストアンサー1

$ path=/example/example/file.example
$ echo ${path##*/}
file.example

$ path=example/example/file.example
$ echo ${path##*/}
file.example

おすすめ記事