2023-05-08 04:51:26 +00:00
|
|
|
#!/bin/sh
|
|
|
|
cd "`dirname "$0"`"
|
|
|
|
|
2023-05-08 05:21:55 +00:00
|
|
|
result=${PWD##*/} # to assign to a variable
|
|
|
|
result=${result:-/} # to correct for the case where PWD=/
|
|
|
|
|
2023-05-08 04:51:26 +00:00
|
|
|
cd ..
|
2023-05-08 05:21:55 +00:00
|
|
|
exec ./dragonruby ${result}
|