aboutsummaryrefslogtreecommitdiffstats
path: root/tools/make_dummy_placement.sh
blob: 8a2a8310a05dc52969ebd54fb70674bbf108b4ab (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

for a in $* ; do 
X=$(( $RANDOM % 500 ))
Y=$(( $RANDOM % 500 ))
X1=$(( $X + 20 ))
Y1=$(( $Y + 130 ))
echo "insert into placements select switch, box '(($X,$Y),($X1,$Y1))' from switches where sysname = '$a';"
done