- or download this
# Set everything to initially be executed
for (keys %scripts) { $scripts{$_}{execute}++; }
- or download this
$scripts{1}{execute} = 1
$scripts{2}{execute} = 1
etc...
- or download this
for (keys %scripts) { $scripts{$_}{execute}=undef; }
- or download this
# Skip this one if we need to
next SCRIPT if !defined $scripts{$script}{execute};
- or download this
map { $scripts{$_}{execute}++; } keys %scripts;