1
0
mirror of https://github.com/danog/informatica.git synced 2025-01-05 20:48:32 +01:00
informatica/cmd.sh

6 lines
117 B
Bash
Raw Normal View History

2016-01-20 19:41:53 +01:00
#!/bin/bash
# Compiler
for f in $@/*.cpp; do g++ $f -o ${f/.cpp/};done
# Zipper
for f in $*; do zip $f.zip $f/*;done