So I would like to create x amount of Directories according to the count of a variable.
#!/bin/bash
countOfCaptureFiles=$(wc -l < allCaptures.txt)
echo $countOfCaptureFiles
start=1
end=countOfCaptureFiles
for((i=$start;i<=$end;i++))
do
mkdir "SnortAlert${i}"
done
In my current testing environment the value of countOfCaptureFiles is 3, so I was hoping to create 3 Directories named SnortAlert1 SnortAlert2 SnortAlert3.
I run the script like so: ./myscript.sh
However when I do this I get errors and no output and I believe it has something to do with assinging end=countOfCaptureFiles but I am not sure how to fix this, any help would be appreciated!
$in theend=assignment. Make itend=$countOfCaptureFiles.001, 002, 003, .... You can useprintf -v name "SnortAlert%03d" "$i", thenmkdir "$name"