Saturday, June 21, 2014

While loop to run command multiple times - a simple shell script

#!/bin/bash
while true; do ls ; done

0 Comments: