#!/bin/bash
DirPath="/home"

for LINE in `ls ${DirPath}`
	echo ${DirPath}"/$LINE"
done

디렉토리 내부 파일 및 디렉토리 목록 출력 쉘 스크립트.