Arc Forumnew | comments | leaders | submit | Arubis's commentslogin
4 points by Arubis 5526 days ago | link | parent | on: Starting up with Arc

If you're running your 'arc' alias from TextMate or the like, this won't much matter, but if you're just executing in Bash, something like:

  alias arc='pushd ~/arc3; rlwrap mzscheme -m -f as.scm ; popd'
...will return you to the directory from whence you came. Which is nice.

-----

1 point by palsecam 5525 days ago | link

Oh yes, I didn't remember of pushd/popd!

Really handy in this case.

Thanks for the tip!

-----