-
Notifications
You must be signed in to change notification settings - Fork 0
Bash script
Hong, Jian-Ching edited this page Nov 27, 2016
·
2 revisions
for D in *; do
if [ -d "${D}" ]; then
echo "${D}" # your processing here
fi
done
for D in */; do my_command; done
7z a output.7z input
7z a 94-2-Algorithms.7z 94-2-Algorithms
7-Zip Error: there is no such archive
沒有考慮非目錄的存在
for D in *; do 7z a $D.7z $D; done