Just witting a simple shell script and little confused:
Here is my script:
% for f in $FILES; do echo \"Processing $f file..\"; done
If you want hidden and non hidden, set dotglob (bash)
#!/bin/bash shopt -s dotglob for file in * do echo "$file" done