Re: sourcing output from a program

2015-01-01 Thread Tim Gray
On Jan 01, 2015 at 07:01 PM +0100, Francesco Ariis wrote: Are you looking for `source '~/folder/script.sh|'` maybe? Yes I am. Thanks! Tim

Re: sourcing output from a program

2015-01-01 Thread Francesco Ariis
On Thu, Jan 01, 2015 at 11:38:26AM -0500, Tim Gray wrote: > Is there some way to source the output directly instead of dumping it to > a file and > echoing the file name? Are you looking for `source '~/folder/script.sh|'` maybe?

sourcing output from a program

2015-01-01 Thread Tim Gray
I'm sure this has been covered before. I want to source a set of aliases that are generated by a program I've written. Right now I've go the following lines in my muttrc: source `~/bin/script.sh > ~/.mutt/aliases; echo ~/.mutt/aliases` This seems like a roundabout way to do things. Is there