You can use Linux ls command with a pattern in the path to list files with a specific name, extensions.
1 2 3 4 5 6 7 8 9 10 |
## List file with specific pattern ## List files with specific extension ls -la *.txt ## List files starting with sda ls -l /dev/sda* ## List files having ty in name as 2nd and 3rd charecter from begining ls -l /dev/?ty* |