17 May
2005
17 May
'05
11:24 p.m.
Hi all I'm trying to use a command (anything but my best guess now is 'find'). I want to list files that end in the number 8-16 if they exist for example finding names 5-9 is easy: $ find /dev/vc -name [5-9] /dev/vc/9 /dev/vc/8 /dev/vc/7 /dev/vc/6 /dev/vc/5 I'm having problems though with numbers higher than 10. $ find /dev/vc -name [5-16] /dev/vc/6 I only get 6 back.. Any ideas? -thanks