Y
Hacker News
new
|
ask
|
show
|
jobs
by
jandrese
1381 days ago
I'm pretty sure bash still interprets line by line because you can mess up a script by editing it while it is executing.
1 comments
int_19h
1380 days ago
bash (and other shells) are special in that regard, because they use textual substitution so heavily - to pass arguments etc.
But Python, Ruby etc all compile to bytecode, and have always done so as far as I can remember.
link
But Python, Ruby etc all compile to bytecode, and have always done so as far as I can remember.