3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

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

Last updated at Posted at 2016-08-09

ななんじゃこりゃー。

$ 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オープンチャットもご利用ください。

Twitter

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?