This file contains 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 | |
######################################### | |
# Shell script to backup MySQL database # | |
######################################### | |
# Variables | |
USER="" | |
PASSWORD="" | |
DATABASE="" |
This file contains 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
/* | |
Skrypt ułatwiający pobieranie wszystkich plików z danego folderu z Chomikuj | |
Wklej w konsolę przeglądarki. Pobieranie plików jeden po drugim nastąpi po chwili. | |
*/ | |
let filesToDownload = $('#FilesListContainer').find('.fileItemContainer'); | |
downloadFile(0, filesToDownload.length - 1); |