LoginSignup
0
0

More than 5 years have passed since last update.

Linux で openFrameworks を実行するときに便利な shell script

Posted at

こんな感じの shell script を run.sh とかで保存して。

#!/bin/sh

curdir="${PWD##*/}"
rm bin/$curdir
make -j$(nproc)
make run

特定のアプリケーションのディレクトリへ移動して、以下のコマンド実行してやれば、だいたい動く。

$ sh run.sh

便利だ!!!!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0