#!/bin/sh
if test $# -eq 0 ; then
  disdrv_w 
elif test $1 = -S; then
  disdrv_w -s
elif test $1 = -s; then
  disdrv_w -s
else
  disdrv_nw "$@"
fi
