Créer des profils du manteau neigeux - retour accueil
git clone git://bebou.netlib.re/gelinive
Log | Files | Refs | README |
commit 2ae22d5bd61ef626af56c1686ef5e079d2c5afd0 parent ae030bdd247168d92763a1ef391502d326948ad9 Auterice: Arthur Pons <arthur.pons@unistra.fr> Date: Mon, 11 Mar 2024 10:33:33 +0100 Simplification gelinive Pour prendre à la fois stdin et un argument Diffstat:
M | gelinive | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gelinive b/gelinive @@ -11,7 +11,7 @@ fi tempdir=$(mktemp -d);trap "rm -rf $tempdir" EXIT -cat ${1:-/dev/stdin} > $tempdir/in +cat $1 > $tempdir/in < $tempdir/in ./calcR | paste $tempdir/in - > $tempdir/temp < $tempdir/temp ./sumcol 5 |