I need to locate all of the file system objects below the /sbin directory that include a period (.) somewhere in the object’s name, but not objects that begin with a leading period.
|
feedback
|
|
Try this in your /sbin folder Find *.txt file but ignore hidden .txt file such as .vimrc or .data.txt file:
The -type f option forces to only search files and not directories. | |||
|
feedback
|
Can add | |||
|
feedback
|