🖥

Mac | find の結果がダブルスラッシュ付きで返ってくる

2023/08/26に公開

ななんじゃこりゃー。

$ find /tmp/       

/tmp/
/tmp//com.apple.launchd.JcwgNYoZcP
/tmp//com.apple.launchd.JcwgNYoZcP/Listeners
/tmp//com.apple.launchd.Silp26jtOD
/tmp//com.apple.launchd.Silp26jtOD/Render
/tmp//progress.log

回避

ワイルドカードを使うとダブルスラッシュは消えた。

$ find /tmp/*

/tmp/com.apple.launchd.JcwgNYoZcP
/tmp/com.apple.launchd.JcwgNYoZcP/Listeners
/tmp/com.apple.launchd.Silp26jtOD
/tmp/com.apple.launchd.Silp26jtOD/Render
/tmp/progress.log

まとめ

Linux ではそんなことはない。
Macだけの現象かもしれない。

参考

And there should be nothing to fix.
/a/b/c and /a//b//c are equally legal and both specify c.

環境

  • Mac OSX El Capitan 10.11.5

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2016-08-09

Discussion