If I put this bash script
for ((i=0; i < 111; i++)); do
echo $i
done
in a file and run it, it runs faster than if I typed it directly in the command line. Why is this? (I'm running Ubuntu.)
If I put this bash script
for ((i=0; i < 111; i++)); do
echo $i
done
in a file and run it, it runs faster than if I typed it directly in the command line. Why is this? (I'm running Ubuntu.)