Unix/Linux 쉘프로그램 : 디렉토리 읽기, 파일처리
이전에 ffmpeg 이라는 tool 에 대하여 포스팅 한 적이 있습니다. 아래는 ffmpeg 을 이용한 응용작업중 하나인 배치 작업 예제 입니다. directory 안에 있는 mov 파일을 순차적으로 mp4 파일로 커버젼하는 sample mulder@~/dir$ cat batch-convert-mov-to-mp4.sh ---------------------------------------------------------------------------------------- #!/bin/bash for FILE in *.mov; do echo "File: $FILE" ffmpeg -i "$FILE" -f mp4 -vcodec copy -acodec copy "$FILE.mp4" done ---------..