Bash melakukan operasi pada semua file di direktori

# Basic syntax:
find . -maxdepth 1 -type f -exec your_command {} \;
# Where:
#	- . specifies the current directory (this can be changed to any
#		directory)
#	- -maxdepth 1 prevents find from searching directories recursively
#	- -type f specifies that the operation should only be performed on
#		files (not directories)
#	- -exec runs your_command on all files that are found
Charles-Alexandre Roy