Files
svr/usr/bin/expresso
T

12 lines
221 B
Bash
Raw Normal View History

2026-01-23 08:55:18 +01:00
#!/bin/bash
expresso ()
{
2026-02-02 19:16:45 +01:00
DIR="$HOME/perso/jeux/holdem/";
HISTORY="historique.md";
2026-01-23 08:55:18 +01:00
SCRIPT=expresso_stat.sh;
TAIL=${1:-1000};
vim + $DIR/$HISTORY;
2026-02-02 19:19:09 +01:00
bash $SCRIPT $DIR/$HISTORY $TAIL
2026-01-23 08:55:18 +01:00
}
expresso "$@"