Quantcast
Channel: 'find' utility does not output all files when using wildcards - Super User
Browsing latest articles
Browse All 2 View Live

Answer by Kamil Maciorowski for 'find' utility does not output all files when...

It's because of shell globbing. Try: find . -name "*.exe" When not quoted, *.exe expands to all *.exe files in the current directory, unless there are none. It so happens you have just one such a file...

View Article



'find' utility does not output all files when using wildcards

Running: $find . -name *.exe gives: ./MakeItSo_1.2.2/MakeItSo_1.2.2/MakeItSo.exe ./MakeItSo.exe but those are not the only exe files in the directory. For example, running $find . -name ATLTester.exe...

View Article
Browsing latest articles
Browse All 2 View Live




Latest Images