How to rename files from .JPG to .jpg in 1-Go

If you want to rename the extension of several files into another extension , then this script may help. This is an example of how-to for JPG to jpg conversion that I found on the web :

for i in *.JPG;
do mv $i `basename $i JPG`jpg;
done

replace JPG and jpg for your convenience to any extension you want to use.

Usage :

Move all the file you want to operate on to a folder and place this script in a bash file and place it inside the same folder , and then go to that folder and run the bash script file in terminal.

How to download facebook album photos in one go

1. (Skip to step 2 if you already have chrome installed) First go to Google Chrome website and download the Google Chrome browser .
2. Go to the webpage : https://chrome.google.com/webstore/detail/blbmhonenddnnmbailokbccgmikhkpni , and install the plugin in you Google Chrome browser.
3. Select *allow* plugin install from the popup when it ask for the permission.
4. Restart your browser.
5. The shortcut for the plugin appear by default on the right side of the navigation bar.
6. Now open the facebook and go to the album you want to download and press the plugin shortcut , wooh the photo start download in page like this :

7. Now press Ctrl+S to save the photos on on your preferred location. and the folder named fbphotos_files in the location where you downloaded the file contain all the photos.