1. getconf -a
2. find
find . -name *.h -print
Sometime, there will be error reported on above command.
For work this problem, run find . -name *\.h -print
i.e. Escape character will be ok.
1. getconf -a
2. find
find . -name *.h -print
Sometime, there will be error reported on above command.
For work this problem, run find . -name *\.h -print
i.e. Escape character will be ok.