mirror of
https://github.com/danog/informatica.git
synced 2025-01-05 20:48:32 +01:00
6 lines
117 B
Bash
6 lines
117 B
Bash
|
#!/bin/bash
|
||
|
# Compiler
|
||
|
for f in $@/*.cpp; do g++ $f -o ${f/.cpp/};done
|
||
|
# Zipper
|
||
|
for f in $*; do zip $f.zip $f/*;done
|