Compilation shell script What if we want to add -ansi -pedantic when compiling? #!/gnu/usr/bin/bash g++ -Wall -g -ansi -pedantic -c file1.cc g++ -Wall -g -ansi -pedantic -c file2.cc g++ -Wall -g -ansi -pedantic -o prog \ file1.o file2.o