search for: bashref

Displaying 2 results from an estimated 2 matches for "bashref".

Did you mean: hashref
2010 Aug 02
3
Error compile wine1.3 on Ubuntu10.04 64bit
CFLAGS="-m32 $(CFLAGS)" LDFLAGS="-L/usr/lib32 $(LDFLAGS)" ./configure I notice here some strange lines: ... checking whether we need to define __i386__... no ... configure: lib(n)curses 32-bit development files not found, curses won't be supported. configure: libv4l 32-bit development files not found. When I do make: Code: /usr/bin/ld: i386:x86-64 architecture of input
2010 Mar 01
2
[Bug 1729] New: Bash environmental associative arrays not getting set
...ReportedBy: woodsdog at gmail.com In Bash 4.0 associative arrays were introduced. There are some environmental variables that are associative arrays. One of these variables is the BASH_ALIASES associative array. Documentation can be found here: http://www.gnu.org/software/bash/manual/bashref.html#Bash-Variables In short, it's an active array of the system aliases, with both the alias and the corresponding command kept track of. For example, to set: $ BASH_ALIASES[cdt]="cd /tmp" would be the equivalent of: $ alias cdt="cd /tmp" Setting this variable, the a...