-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm.sh
executable file
·46 lines (30 loc) · 808 Bytes
/
m.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
# script file for BASH
# which bash
# save this file as m.sh
# chmod +x .sh
# ./m.sh
# checked in https://www.shellcheck.net/
printf "compile c file \n"
gcc mu-atom.c -std=c99 -Wall -Wextra -pedantic -O3 -lm
if [ $? -ne 0 ]
then
echo ERROR: compilation failed !!!!!!
exit 1
fi
printf "run the compiled program\n"
for k in {1..10}
do
./a.out "$k" > mu-atom-"$k".ppm
done
printf "convert all ppm files to png using Image Magic v 6 convert \n"
# for all ppm files in this directory
for file in *.ppm ; do
# b is name of file without extension
b=$(basename "$file" .ppm)
# convert using ImageMagic : -resize widthxheight ||
convert "${b}".ppm "${b}".png # iWidth = iHeight* DisplayAspectRatio
echo "$file"
done
printf "delete all ppm files \n"
rm ./*.ppm