#!/bin/bash
if [ $# -eq 1 ]; then
    if [ $1 = "-g" ]; then
        sudo ./run
    else
        sudo ./run -c
    fi
else
    sudo ./run
fi
