#! /bin/sh # aoe-interfaces listf=/sys/module/aoe/parameters/aoe_iflist if test -z "$*"; then test -r $listf && cat $listf else if test -w $listf; then printf '%s' "$*" > $listf else printf '%s' "$*" > @devdir@/interfaces fi fi