Bash Shell #!/bin/bash for x in * do ls -l "$x" sleep 1 done 123456 #!/bin/bashfor x in *do ls -l "$x" sleep 1done