HostGator.com Interview Question

How can you use a bash loop to create 50 blank sequential files ?

Interview Answer

Anonymous

Apr 26, 2012

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