This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| fileid="$1" | |
| filename="$2" | |
| curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=${fileid}" > /dev/null | |
| curl -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk '/download/ {print $NF}' ./cookie`&id=${fileid}" -o ${filename} | |
| ## run chmod +x gdrive_folder_download.sh | |
| ## ./gdrive_folder_download.sh <fileID> <fileName> | |
| ## Donate BTC : 1Ndmbt6hZn7EEwZYMYKUJWQww1HPhj1uSN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const countries = new Choices('.element', { | |
| choices: [ | |
| { value: 'Afghanistan', lable: 'AF' }, | |
| { value: 'Åland Islands', lable: 'AX' }, | |
| { value: 'Albania', lable: 'AL' }, | |
| { value: 'Algeria', lable: 'DZ' }, | |
| { value: 'American Samoa', lable: 'AS' }, | |
| { value: 'AndorrA', lable: 'AD' }, | |
| { value: 'Angola', lable: 'AO' }, | |
| { value: 'Anguilla', lable: 'AI' }, |