Bu basit bash betiği, bir Kotlin dosyasını derleyip çalıştırmak için kullanılır. Betik, kullanıcıdan Kotlin dosyasının adını alır, dosyayı derler ve ardından çalıştırır.
Betik, şu şekilde çalıştırılır:
./compile.sh <kotlin_dosyası>
<kotlin_dosyası>
: Derlenip çalıştırılacak Kotlin dosyasının adı.
./compile.sh hello.kt
Bu örnek, hello.kt
adlı Kotlin dosyasını derler ve çalıştırır.
This simple bash script is used to compile and run a Kotlin file. The script takes the name of the Kotlin file from the user, compiles it, and then executes it.
The script is executed as follows:
./compile.sh <kotlin_file>
<kotlin_file>
: The name of the Kotlin file to be compiled and executed.
./compile.sh hello.kt
This example compiles and runs the Kotlin file named hello.kt
.