i want to list files from dev end at tty bettwen 15 and 24...should appears /dev/tty15,/dev/tty16,/dev/tty17, etc until /dev/tty24

what is the command?

link|improve this question

25% accept rate
feedback

2 Answers

up vote 2 down vote accepted

If I understand the question correctly, you can use Bash's brace expansion:

ls /dev/tty{15..24}
link|improve this answer
already try ls /dev/tty[15-24], but appear /dev/tty1 and i want that start on 15 – pedro Mar 20 '10 at 0:30
1  
@pedro: {} is different from []. – Mikael S Mar 20 '10 at 0:33
@pedro: That's a different expression. What that does is similar to a character regular expression. Have you tried the brace expansion instead? – Brian McKenna Mar 20 '10 at 0:34
DONE!! THanks.. – pedro Mar 20 '10 at 0:38
feedback

ls /dev/tty{15..24}?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.