1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#!/bin/bash
# vim: set filetype=sh :
# file: example.ia-c-learn
# copyright: Bernd Schumacher <bernd.schumacher@hpe.com> (2007-2020)
# license: GNU General Public License, version 3
# description: example use -cl (check in learn modus)
# see also: test.ia-c-learn
set -e
set -u
. ./ia
sub()
{
echo "one stdout"
echo "one stderr" >&2
echo "two stdout"
echo "two stderr" >&2
echo "three stdout"
echo "three stderr" >&2
}
eval "$ia_init"
ia_ignore "^one"
ia_stdout "^two"
ia_add "sub"
ia -c --learn
|