touch - changes the date and time of the file to the current date/time.If the file doesnot exists it will create an empty file.
Format touch filename
Eg1: touch file1
Here it creates a file file1 in the present working directory,.
Eg2: touch file{1,2,3,4}
Here it creates files file1,file2,file3,file4 in the present working directory
