#! /bin/ash
##############################
# fdisk gateway 
#
# by M. Andreoli (1998) 
##############################

cat << END

The device is usually one of the following:

    /dev/hda /dev/hdb /dev/sda /dev/sdb ...

The  partition  is  a  device name followed by a partition
number.  For example, /dev/hda1 is the first partition  on
the first hard disk in the system.

END

	read -p "Enter device: " device 
	echo
	fdisk $device



