Change date using touch
Posted: October 18, 2011 Filed under: Applications, Linux, Technical Notes | Tags: Computers, Linux Leave a comment »#!/bin/sh
for i in *; do
touch -r "$i" -d "-1 years" "$i"
done
#!/bin/sh
for i in *; do
touch -r "$i" -d "-1 years" "$i"
done