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/sh | |
### DEPRECATED | |
### MOVED TO https://github.com/pm98zz-c/in-outdoor | |
#################################################### | |
### Gnome 3 general. | |
TERMINAL_DARK="false" | |
OUT_THEME="'Adwaita'" # Legacy GTK | |
IN_THEME="'Adwaita-dark'" | |
OUT_BRIGHTNESS="100%" |
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
mysql -uroot -e "show tables FROM drupal;" | grep -v '^Tables_in_' | { while read -r table ;\ | |
do mysql -uroot -e "CREATE TABLE new_build.$table AS SELECT * FROM drupal.$table;"; \ | |
done ; } |