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.
old_ext=pl
new_ext=pm
for file in $(ls *.$old_ext)
do
mv $file ${file%${old_ext}}${new_ext}
done
${A%txt} - removes 'txt' from end of $A
${A#test} - removes 'test' from front of $A
old_ext=pl
new_ext=pm
find . -type f -name "*.$old_ext" -print | while read file
do
mv $file ${file%${old_ext}}${new_ext}
done