view backup/stop.sh @ 1744:db52c29605e2

support svg
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 13 Nov 2022 19:26:41 -0700
parents 45eaaf5146f3
children
line wrap: on
line source

#!/bin/bash

LUAN_PIDS=$(ps ax | awk '{if($0~"[s]erver.luan"){print $1}}');
kill -TERM $LUAN_PIDS;
exit 0;