Project

General

Profile

1
#!/bin/sh
2
# Imports all inputs at once
3
# Usage: . self (note initial ".")
4

    
5
for input in inputs/*/; do
6
    make ${input}import &
7
    sleep 2 # wait for initial output so that outputs don't become jumbled
8
done
(12-12/34)