watch di linux =! watch di FreeBSD
Dua command yang sama dengan arti berbeda..
Kalau pengennya running watch di FreeBSD seperti watch yang ada di Linux sebenernya simple.. pake shell script aja..
Misal mau nampilin hasil dari command finger tiap 4 seconds..
here they are
#!/bin/sh
while [ 1 ]
do
clear
finger
sleep 4
done
dah.. gitu aja kok.. beres..
kalo mau pake binary binary an gak tau dimana ports nya kalo di FreeBSD.. tapi kalo di NetBSD ada di pkgsrc/misc/watch
Comments