| type | command |
|---|---|
| search | find |
| copy | find exec |
- show files modified as of 8am today, print only date time and filename
find . -not -path "*/.*" -type f -newermt "$(date +%Y-%m-%d) 08:00" -ls | awk '{print $8, $9, $10, $11}'- find files modified since $arg1 (time) today and copy to $arg2 directory
find . -not -path "*/.*" -type f -newermt "$(date +%Y-%m-%d) $1" -exec cp {} $2 \;