Answers for "how to get the file date in linux"

0

find all files edited after date linux

find . -type f -newermt '1/30/2017 0:00:00'
Posted by: Guest on June-30-2020
1

how to change date of file in linux

/*how to change date of file in linux*/
touch -a -m -t 201512180130.09 fileName.ext

-a = accessed
-m = modified
-t = timestamp - use [[CC]YY]MMDDhhmm[.ss] time format
Posted by: Guest on April-06-2021

Code answers related to "how to get the file date in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language