Linux/기본기능과 명령어
shell script 파일 리스트 가져오고 md5sum 명령실행
blackbearwow
2022. 5. 16. 01:05
#!/bin/sh
for FILE in `ls $1`
do
md5sum $FILE
done