Re: pushd, popd and dirs of different bash processes communicate by an external file

2011-06-10 Thread Steven W. Orr
On 6/9/2011 11:42 PM, Peng Yu wrote: Hi, I'm wondering if there is a way that different bash processes share the same stack. One way of doing so is to use a file to save the stack. It is not difficult to implement this function myself, but I'm just wondering if there is any simpler solution or a

pushd, popd and dirs of different bash processes communicate by an external file

2011-06-09 Thread Peng Yu
Hi, I'm wondering if there is a way that different bash processes share the same stack. One way of doing so is to use a file to save the stack. It is not difficult to implement this function myself, but I'm just wondering if there is any simpler solution or anybody has done it already. Thanks! --