kmitl-profund-exercise/bmi-calculator-cli-alt/install.sh

14 lines
327 B
Bash
Raw Permalink Normal View History

#!/bin/sh
DIR=$HOME/.local/bin
APPNAME=bmi-calculator-cli-alt
if [[ ! -d "$DIR" ]]
then
mkdir $DIR
echo "กำลัง Build และติดตั้ง $APPNAME ใน $DIR"
else
echo "กำลัง Build และติดตั้ง $APPNAME ใน $DIR"
fi
g++ -Wall -o "$DIR/$APPNAME" "main.cpp"