09-08-2023, 12:26 PM
Change Access Time using Linux Touch Command
To change the access time of a file to the current time, use the 'a' option followed by the file name with the touch command like in the following example:
touch -a file_name.txt
Then, check the access time with the following command:
ls -lu file_name.txt


