https://www.baeldung.com/linux/execute-file-using-dot-slash
Although we are in the same directory as the script.sh file, Bash could not find this file. Therefore, we need to specify the relative or absolute path to the file so that shell knows where our executable file is.
In Linux, the dot character (.) denotes the current directory.
./gradlew build
build/libs java -jar ${filename}
./gradlew clean build
agora-0.0.1-SNAPSHOT-plain.jar
agora-0.0.1-SNAPSHOT.jar
How do I run a Linux command in the background?
^C 를 누르면 command를 입력할 수 있게 된다. 사실 프로그램이 종료된 것이었다. 터미널을 빠져나오더라도 프로그램이 정상적으로 실행되게 하는 법.
커맨드 뒤에 (띄어쓰기)& 를 입력한다.