2009-01-30 16:16:59 -01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
2013-05-06 12:48:46 +00:00
|
|
|
## Copyright (C) 2006-2012 Daniel Baumann <daniel@debian.org>
|
2010-09-02 11:12:37 +00:00
|
|
|
##
|
2012-07-29 23:59:00 +00:00
|
|
|
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
2010-09-02 11:12:37 +00:00
|
|
|
## This is free software, and you are welcome to redistribute it
|
|
|
|
## under certain conditions; see COPYING for details.
|
|
|
|
|
2009-01-30 16:16:59 -01:00
|
|
|
|
|
|
|
Man ()
|
|
|
|
{
|
|
|
|
if [ -x "$(which man 2>/dev/null)" ]
|
|
|
|
then
|
2011-01-01 15:59:25 -01:00
|
|
|
man $(basename ${0})
|
2009-01-30 16:16:59 -01:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
}
|