「exam_folder」というフォルダーを作成するbashスクリプトが必要です。このフォルダーが既に存在する場合(たとえば、スクリプトを再度実行します)、スクリプトは「exam_folder_1」を作成し、そのフォルダーが存在する場合は「exam_folder_2」などを作成するスクリプト。私はそれを賢くしたいと思います:)私はこのようなものを手に入れました:
function create_folder {
if [ -d "$1" ]; then # if exists
mkdir $1_`i_max` # function i_max would find out the max number and add 1
else
mkdir $1
fi }
ご協力ありがとうございました。