Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
mv ??????????2005.txt ??????????.txt
[todd@tlyons ~/test]$ touch 17142509192005.txt 17410709192005.txt 17413209192005.txt
[todd@tlyons ~/test]$ ls
17142509192005.txt 17410709192005.txt 17413209192005.txt
[todd@tlyons ~/test]$ for F in *.txt; do newF=`echo $F | sed s/2005//`; mv $F $newF; done
[todd@tlyons ~/test]$ ls
1714250919.txt 1741070919.txt 1741320919.txt
[todd@tlyons ~/test]$