Quote:
Originally Posted by Aeris
Ah! I've tried only:
cd /
find light.sh
But didn't work... your code works instead, thank you! 
|
*nix (and Linux) "find" is a much different command than ones of the same name on other operating systems.
"man find" for the details, either in a web search engine or in a full Linux/Mac installation with the man(uals) installed.
Briefly: command starting-path tests
In this case it would have been:
find / -name 'light.sh'
or, case insensitive:
find / -iname 'light.sh'
or, case insensitive, anything starting with 'light':
find / -iname 'light*'
man find