Y
Hacker News
new
|
ask
|
show
|
jobs
by
omribahumi
3326 days ago
How is bash faster than Python?
2 comments
arghwhat
3326 days ago
When what you need is a pipe, Python won't do anything positive to performance. Plus, CPython is horrendously slow in general.
Other than that, the simpler design also allowed greater parallelism.
link
barrkel
3325 days ago
Bash lets you glue best-of-breed tools together, as long as they all talk on stdin / stdout / files. The tools themselves can be written in the best language for their task.
link
Other than that, the simpler design also allowed greater parallelism.