poor mans watch, watch for solaris
Here is a simple script that you can use as watch in Solaris as well.
watch()
{
    #Poor man's watch
    while (true)
    do
        clear
        $*
        sleep 2;
    done
}
    
Here is a simple script that you can use as watch in Solaris as well.
watch()
{
    #Poor man's watch
    while (true)
    do
        clear
        $*
        sleep 2;
    done
}