Skip to content

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

terminal commands

type command
search find
copy find exec

001 find

  • 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}'

002 find exec

  • 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 \;

About

terminal commands

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors