|
DataMuseum.dkPresents historical artifacts from the history of: Regnecentalen RC-900 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Regnecentalen RC-900 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 737 (0x2e1) Types: TextFile Notes: UNIX file Names: »S32cspdflt«, »cspdflt«
└─⟦23f6ff13b⟧ Bits:30004042/rcadapt.imd SW95705I 386/ix Multi-user Release 1.2 └─⟦23f6ff13b⟧ UNIX Filesystem └─⟦this⟧ »AE/new/etc/init.d/cspdflt« └─⟦this⟧ »AE/new/etc/rc2.d/S32cspdflt«
# Copyright (c) 1988 RC # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF RC # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "@(#)cspdeflt 1.1" # cspdeflt control case $1 in 'start') [ -s /etc/cspdflt.cf -a -x /etc/cspdflt ] && sed -e '/^[ ]*#/d' -e '/^[ ]*$/d' /etc/cspdflt.cf | while read confline do /etc/cspdflt $confline || echo "cspdflt: $confline FAILED" >&2 done ;; 'stop') [ -s /etc/cspdflt.cf -a -x /etc/cspdflt ] && sed -e '/^[ ]*#/d' -e '/^[ ]*$/d' /etc/cspdflt.cf | while read dev conf do /etc/cspdflt -d $dev || echo "cspdflt: -d $dev FAILED" >&2 done ;; *) echo "usage: /etc/init.d/cspdeflt {start|stop}" ;; esac