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
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=