timed tail for logfiles.
Display loglines given a minimum date and/or a maximum date.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910 |
- #!/bin/sh
-
- [ "$1" = "clean" ] && [ -f "Makefile" ] && make distclean # pour les .o
-
- rm -fR configure aclocal.m4 autom4te.cache src/Makefile.in tests/Makefile.in Makefile.in compile depcomp install-sh missing tests/Makefile.am
-
- [ "$1" = "clean" ] && exit 0
-
- ./tests/regen.sh
- aclocal && automake -a -c && autoconf
|