Merge branch 'release-2.140.124'
[feisty_meow.git] / scripts / opensim / grid_land_lister.sh
1 #!/bin/bash
2
3 # creates a file with the information about land on the
4 # simulator.
5
6 #hmmm: need to abstract the gridroot user, the output file name
7 #(although support a default), and the database name.
8
9 mysql -u gridroot -p > $HOME/dump_of_opensim_land_table.txt <<eof
10 use wildmutt_opensim;
11 select RegionUUID,Name,Description,OwnerUUID from land;
12 eof
13