Skip to content

Instantly share code, notes, and snippets.

View mickaelv's full-sized avatar

Mickaël mickaelv

  • Atelier du Maker
  • Lyon
View GitHub Profile
@mickaelv
mickaelv / update.sql
Last active August 2, 2019 09:08
Changer simplement l'URL dans WP depuis la BDD
SET @oldsite = 'URL', @newsite = 'URL';
UPDATE wp_options SET option_value = replace(option_value, @oldsite, @newsite) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, @oldsite,@newsite);
UPDATE wp_posts SET post_content = replace(post_content, @oldsite, @newsite);
UPDATE wp_postmeta SET meta_value = replace(meta_value, @oldsite,@newsite);
@mickaelv
mickaelv / poweroff.sh
Created August 2, 2019 09:18
PowerOff multiple computers
for ip in 50 $(seq 1 154)
do
ping -q -c1 10.10.10.$ip > /dev/null
if [ $? -eq 0 ]
then
ssh user@10.10.10.$ip "poweroff" &
echo "$ip eteint"
else
echo "$ip deja eteinte"
fi