NETGET(1)

NAME
	netget

SYNOPSIS
	netget [-i] package ...

DESCRIPTION
	Netget is a simple net installer written in rc.
	Packages are downloaded from my live system.
	Netget resolves dependency among packages.
	Installed packages are registered to /usr/local/lib/receipt.
	The mode bit of receipt should be append only.

	If no package name is given, Netget shows current supported packages.

	With -i option, packages are blindly installed to /usr/local/bin
	for regular command, and their manuals are to /usr/local/man/[1-8]/.

    Without -i option, packages are once copied to
		/tmp/netget
	You can examine the contents of downloaded packages by
		lr -l /tmp/netget
	and then install them into your system by
		cpdir -mv /tmp/netget /

	Therefore you need to have lr and cpdir. Get them by
		netget -i lr cpdir

	You need to have /lib/namespace.local with the contents below.

	--- /lib/namespace.local ---
	# namespace.local follows /lib/namespace
	bind -a /usr/local/bin/$objtype /bin
	bind -a /usr/local/bin/rc /bin
	bind -a /usr/local/man/1 /sys/man/1
	bind -a /usr/local/man/2 /sys/man/2
	bind -a /usr/local/man/3 /sys/man/3
	bind -a /usr/local/man/4 /sys/man/4
	bind -a /usr/local/man/5 /sys/man/5
	bind -a /usr/local/man/6 /sys/man/6
	bind -a /usr/local/man/7 /sys/man/7
	bind -a /usr/local/man/8 /sys/man/8
	----------------------------

AUTHER
	Kenji Arisawa
	arisawa@aichi-u.ac.jp