You are not logged in.
I can't seem to get the wildcard (*) to work when I press shift + 8 in a command line. I can make a bash script in nano and use the character, but never in the shell.
Offline
ls * # same as ls -R
Does this work in your home-directory? Is there any error-message, any system beep/bell?
My way to happyness:
cat ~/problems > /dev/null
Offline
Is there something using it in an rc file? Maybe ~/.inputrc
Offline
@lama, Yes, a system bell is triggered, that is all. It does not display the character in any directory.
@Proc, I don't know, I don't have a .inputrc
Off-topic, would it be an .inpurc or a .inputrc. I tend to pronounce it "dot input are see" Same with all the other hiddens.
Offline
These questions might help:
Does this happen at the linux console? In X? Both?
What is your keymap configuration in /etc/rc.conf? What is your keyboard layout in X?
Does typing a '*' with another key (e.g. the one above the numeric keypad, if you have one) work as expected?
Is this a new problem?
Can you type a '*' in other text editors as well? What about other shells? Other terminal emulators?
Offline
Are you using csh/tcsh?
what about the 'glob/noglob' option?
what happens if you do:
echo *
do you just get a '*' or do you get the filenames in the current directory?
try this out:
bash
echo *
exit
bash -f
echo *
exit
in the first case, the result is 'Desktop' (only non-dot file),
in the 2nd case, the result is '*'
Last edited by perbh (2008-10-15 15:53:22)
Offline