edc / bass

Make Bash utilities usable in Fish shell
MIT License
2.2k stars 70 forks source link

Avoid temporary file #33

Closed paparomeo closed 8 years ago

paparomeo commented 8 years ago

Since Fish's source allows reading from stdin, all the processing can be done in memory using pipes. This PR implements the required changes, avoiding the need for the temporary file, which simplifies the code and should improve performance.

edc commented 8 years ago

Looks great! Thanks!