mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-03 22:23:24 +00:00
6212c76b8a
A prefetching proxy server for WWW. PR: 7540 Submitted by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
9 lines
130 B
Bash
9 lines
130 B
Bash
#!/bin/sh
|
|
wcolspool=/var/spool/wcol
|
|
wcol=/usr/local/wcol/wcol
|
|
|
|
if [ -f $wcol ]; then
|
|
echo -n ' wcol'
|
|
$wcol >/dev/null 2>&1 &
|
|
fi
|