Skip to content

Instantly share code, notes, and snippets.

@sjothen
sjothen / gist:a6aa14adda219cf24a4301610b581a85
Last active June 15, 2022 08:52
Pull out initrd from qcow2 without mounting
7z e hda.img # Use p7zip to extract partitions as images 0.img, 1.img, etc
7z l 0.img boot # List files in boot to find name of initrd
7z e 0.img boot/initrd.img-4.9.0-13-4kc-malta
@sjothen
sjothen / sync-prod.sh
Last active January 18, 2017 18:33 — forked from retlehs/sync-prod.sh
WP-CLI aliases sync example
read -r -p "Would you really like to reset your development database and pull the latest from production? [y/N] " response
if [[ "$response" =~ ^([yY][eE][sS]|[yY])$ ]]; then
wp @development db reset --yes &&
wp @production db export - > sql-dump-production.sql &&
wp @development db import sql-dump-production.sql &&
wp @development search-replace https://example.com https://example.dev
fi