Files
svr/usr/bin/expresso
T

12 lines
243 B
Bash
Raw Normal View History

2026-01-23 08:55:18 +01:00
#!/bin/bash
expresso ()
{
DIR="$HOME/perso/thm/interets/jeux/poker";
HISTORY="expresso_history.md";
SCRIPT=expresso_stat.sh;
TAIL=${1:-1000};
vim + $DIR/$HISTORY;
bash $DIR/$SCRIPT $DIR/$HISTORY $TAIL
}
expresso "$@"