Lines 157-163
Link Here
|
157 |
while read FIRST REST; do |
157 |
while read FIRST REST; do |
158 |
# If 'dev' is not specified, add current dev. |
158 |
# If 'dev' is not specified, add current dev. |
159 |
SUFFIX='' |
159 |
SUFFIX='' |
160 |
echo "$FIRST $REST" | egrep -q '[[:space:]]dev[[:space:]]' || SUFFIX="dev $NAME" |
160 |
if ! echo " $FIRST $REST" | |
|
|
161 |
egrep -q '[[:space:]](throw|unreachable|prohibit|blackhole)[[:space:]]'; then |
162 |
echo "$FIRST $REST" | egrep -q '[[:space:]]dev[[:space:]]' || SUFFIX="dev $NAME" |
163 |
fi |
161 |
# If operation is not specified, use 'append'. |
164 |
# If operation is not specified, use 'append'. |
162 |
case "$FIRST" in |
165 |
case "$FIRST" in |
163 |
add|change|append|replace) |
166 |
add|change|append|replace) |