6 lines
100 B
Bash
Executable File
6 lines
100 B
Bash
Executable File
#! /bin/bash
|
|
PATH=.:$PATH
|
|
IN="$1"
|
|
echo IN=$IN
|
|
time for i in ex1-c ex2-c; do "$i" < "$IN"; done 2>&1
|