#!/bin/bash if [ "$1" == "?" ] then echo "./build_pic.sh build pic" echo "./build_pic.sh clean clean build result" exit fi if [ "$1" == "clean" ] then make clean else make fi