#!/bin/bash # This script is intended to create lists of files with the names supplied by the user. # This script is created by Tolga Guver on 050226 echo Enter the file name to be created .. read filename echo Enter the common letter of files to be listed read abb ls $abb* > $filename.lis echo The file named $filename.lis has been created.