#!/bin/bash
for ui in *.ui; do
        py=${ui/.ui/.py}
        echo $ui ">" $py
        pyuic5 $ui > $py
done
