Re: [Pharo-users] Linux init script

2019-07-10 Thread K K Subbu
On 10/07/19 10:30 PM, Sebastián Filippini wrote: Hello everyone, I'm trying to write a Linux init script for a Pharo application. I'm using a bash script wrapper to launch pharo. This script executes the pharo script provided by get.pharo.org. ./pharo myapp.image start.st & PID=$! echo $PID

[Pharo-users] Linux init script

2019-07-10 Thread Sebastián Filippini
Hello everyone, I'm trying to write a Linux init script for a Pharo application. I'm using a bash script wrapper to launch pharo. This script executes the pharo script provided by get.pharo.org. This is my wrapper script: #! /bin/bash cd "$(dirname "$0")" ./pharo myapp.image start.st & PID=