Is it possible to have an 'Option' to make '[[' compatible with '[', w/rt pathname expansion? It seems counter-intuitive to have: d="/etc/rc.d/rc5.d" if [[ ! -e $d/S??sshd ]]; then echo "sshd not enabled"; fi give different output than: if [ ! -e $d/S??sshd ]; then echo "sshd not enabled"; fi or is a 'compatibility option', something that would be technically impossible?
- RFE: make [[ compatible with [ 'Option'? Linda Walsh
- Re: RFE: make [[ compatible with [ 'Option'? Greg Wooledge
- Re: RFE: make [[ compatible with [ 'Option'? Mike Frysinger
- Re: RFE: make [[ compatible with [ 'Option'? Linda Walsh
- Re: RFE: make [[ compatible with [ 'Option'? Clark J. Wang
- Re: RFE: make [[ compatible with [ 'Option'? Chet Ramey
- Re: RFE: make [[ compatible with [ 'Option'? Linda Walsh