blob: f22998b7b6d4756649773f0c3d6d68700a25fec8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/sh
# A filter filtering everything.
# To still allow to see what is happening, the content
# is copied to a file, together with date and process.
ps -lf -p $PPID >> garbage.filtered.out
date >> garbage.filtered.out
cat >> garbage.filtered.out
|