English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I can find all files beginning with 'sh';

find /bin -follow -name '*sh' -print

and all files ending with 'sh';

find /bin -follow -name '*sh' -print

But I want to find all files that have 'sh' anywhere in the name of the file.

2007-02-24 07:21:27 · 1 answers · asked by lamar211us 1 in Computers & Internet Software

1 answers

find /bin |grep sh

or
find /bin -follow -name "*sh*" ; -print

2007-02-24 07:24:09 · answer #1 · answered by Vegan 7 · 0 0

fedest.com, questions and answers