Lines Matching full:script
4 # Run the old /etc/daily.local script. This is really for backwards
17 for script in $daily_local
20 case "$script" in
22 if [ -x "$script" ]
24 echo "Running $script:"
26 $script || rc=3
27 elif [ -f "$script" ]
29 echo "Running $script:"
31 sh $script || rc=3
33 echo "$script: No such file"
37 echo "$script: Not an absolute path"