Re: Bash git repository on savannah

2012-01-09 Thread Chet Ramey
On 12/7/11 1:52 PM, Chet Ramey wrote: > There is now a `devel' branch on the git tree, starting with bash-2.05b > and bash-3.0-alpha. There are regular (mostly weekly) snapshot updates, > each a separate commit to that branch. The git `devel' branch on savannah now has weekly snapshots up to the

Re: equivalent of Linux readlink -f in pure bash?

2012-01-09 Thread Clark J. Wang
On Wed, Aug 10, 2011 at 18:47, Stephane CHAZELAS wrote: > 2011-08-10, 12:00(+02), Bernd Eggink: > [...] > > function f > > { > > local OPTIND=1 > > > > echo "\$1=$1" > > } > > > > while getopts "abcdefg" opt > > do > > echo "opt=$opt" > > f $opt > > done > > --