mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
9 lines
130 B
Plaintext
9 lines
130 B
Plaintext
|
#!/bin/sh
|
||
|
wcolspool=/var/spool/wcol
|
||
|
wcol=/usr/local/wcol/wcol
|
||
|
|
||
|
if [ -f $wcol ]; then
|
||
|
echo -n ' wcol'
|
||
|
$wcol >/dev/null 2>&1 &
|
||
|
fi
|