You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Historically, I've had a collection of helper functions, first written in bash, then ported to zsh, now partially ported to fish. Porting these is not how I want to spend my time. Is it worth the effort of writing them to be shell independent, then (hopefully) never having this problem again?
Desires:
Not written in sh/bash/zsh. These are not enjoyable to author and are a pain to maintain
Performance is priority. My first thought is to use Ruby for everything, but the startup costs may be too high. E.g.
% time sh -c ""
0.00 real 0.00 user 0.00 sys
% time ruby -e ""
0.28 real 0.16 user 0.09 sys
Historically, I've had a collection of helper functions, first written in bash, then ported to zsh, now partially ported to fish. Porting these is not how I want to spend my time. Is it worth the effort of writing them to be shell independent, then (hopefully) never having this problem again?
Desires:
Not written in sh/bash/zsh. These are not enjoyable to author and are a pain to maintain
Performance is priority. My first thought is to use Ruby for everything, but the startup costs may be too high. E.g.
See also:
The text was updated successfully, but these errors were encountered: