I want to call this zsh alias in a mathematica cell?
my zsh alias is called testAlias
I have tried many mathematica functions and found that ReadList can send strings to my zsh shell (or internal command line anyhow)
Unfortunately alias's don't work.





ReadList. Check outStartProcess. Then you can useWriteLine[procObj,"testAlias"]and read it back in withReadString[procObj, EndOfBuffer]. – b3m2a1 Jun 17 '17 at 17:21