Skip to content

Instantly share code, notes, and snippets.

View alex-karo's full-sized avatar
😁

Aleksandr Karo alex-karo

😁
  • Ennabl
  • Porto, Portugal
View GitHub Profile
@alex-karo
alex-karo / mysql-docker.sh
Created April 23, 2020 15:41 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
for i in *.mp3; do
[ -e "$i" ] || continue
some command "$i"
done
@alex-karo
alex-karo / bash_bulk_reneme
Created August 31, 2016 15:13
Bash: bulk change extension
for file in *.jade; do mv "$file" "`basename "$file" .jade`.pug"; done