Add script run-journalctl + use /bin/sh for all run-* wrappers
[grml-scripts.git] / usr_share / run-journalctl
1 #!/bin/sh
2 # Filename:      run-journalctl
3 # Purpose:       wrapper for getty setup to run journalctl with according options
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 ################################################################################
8
9 exec /bin/journalctl -b -f
10
11 ## END OF FILE #################################################################