set is shell builtin, env is not

This commit is contained in:
Roy Marples 2008-05-26 16:06:35 +00:00
parent f2d3069dec
commit 08e5e31f93

View File

@ -1,6 +1,6 @@
# Just echo our DHCP options we have
if [ "${reason}" = "TEST" ]; then
env | grep "^\(interface\|pid\|reason\|skip_hooks\)="
env | grep "^\(new_\|old_\)" | sort
set | grep "^\(interface\|pid\|reason\|skip_hooks\)=" | sort
set | grep "^\(new_\|old_\)" | sort
fi