728x90
for FILE in *; do
filename=${FILE#*.} # extract file extension
....
done
이러면 filename에 파일의 확장자가 저장된당
다른방법
출처) http://dhna.tistory.com/264
fullpath=$1
dirname=$(dirname $fullpath) # 파일이름을 뺀 경로
basename=$(basename $fullpath) # 파일이름
filename=${basename%.*}
fileext=${basename#*.}
728x90
'콤퓨타 > Shell Script' 카테고리의 다른 글
awk활용해서 wc 명령어 응용 예제 (0) | 2013.06.24 |
---|---|
파일 개수구하기 (0) | 2013.06.21 |
sed 명령어 내가사용한 방법 (0) | 2013.06.20 |
디렉토리에서 ㅍㅏ일목록읽기 (0) | 2013.06.19 |
댓글