for .. in

■コード

#!/bin/bash

for src in `ls`

do

echo ${src}

done

exit 0