find / -name Debug -print
https://builder.japan.zdnet.com/os-admin/20363968/ find / I'm using find to see all the files in my system
The explanation is below https://eng-entrance.com/linux-command-find find search destination -name file name The first command looks for a file and folder named debug from home
https://www.atmarkit.co.jp/ait/articles/1607/20/news024.html -print prints the full path
https://www.atmarkit.co.jp/ait/articles/1607/12/news021.html You can also use the example from the above site find ~ -name "bash"
https://26gram.com/linux-find-command Explanation while involving other commands touch mkdir
https://blog.be-dama.com/2015/01/20/find%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89%E3%81%A7%E6%A4%9C%E7%B4%A2%E3%81%99%E3%82%8B%E9%9A%8E%E5%B1%A4%E3%82%92%E6%8C%87%E5%AE%9Amaxdepth/ If you specify a number, you can search only the current directory
-Note that if there is no -name, all search results will be displayed.
Recommended Posts