HostGator.com interview question

Use a bash for loop to create 50 blank sequential files

Interview Answer

Anonymous

Jan 23, 2012

$ for i in {1..50}; do touch $i; done

1