How can I find all the files ending with .sh OR .bin in a given folder.
I know I can do:
find /path/to/folder -name "*.bin"
to find all bin file. What must I add to also look for .sh files ?
How can I find all the files ending with .sh OR .bin in a given folder.
I know I can do:
find /path/to/folder -name "*.bin"
to find all bin file. What must I add to also look for .sh files ?