if your system date is far front than the files that are copied in to your system, you have to modify the file date . for file modification in linux, it is very simple
use touch *.
It will modify the date and time of all the files in the current directory.
If you have multiple files and directories,
you have to use find command in unix in that particular directory
find . -name “*.*”|xargs touch *
This command will change the file modification date and so everthing will be fine
More From sriramraj
- Conversion of .doc file to pdf file
- how to change system date in linux
- SSH Command in Linux | Techno Explore
sriramraj Recommends
- Free WordPress Themes in Internet (StudentsTips)
- top job sites in india (StudentsTips)
- 10 Career Change Mistakes to Avoid (StudentsTips)
- How to connect, tether, your ipad to your iphone (perivision)
- How to get a trademark registered in India (bizniche)
- How to add rage faces in Facebook (perivision)
Related posts:

