I found this. See if it helps.
Here is an example from my notes.
Router#sh run
Building configuration...
Current configuration : 3615 bytes
!
version 12.1
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router
!
aaa new-model
aaa authentication login default local
aaa authorization exec default local
enable password cisco
!
username basicmenu privilege 15 password 0 basicmenu
username basicmenu autocommand menu Basic
username cmdmenu privilege 15 password 0 cmdmenu
username cmdmenu autocommand menu Cmdr
username admin privilege 15 password 0 admin
!
!
!
!
ip subnet-zero
no ip finger
!
ipx routing 0000.0c14.6f01
!
!
!
interface Ethernet0
ip address 10.10.10.1 255.255.255.0
media-type 10BaseT
!
interface Ethernet1
no ip address
shutdown
media-type 10BaseT
!
interface Serial0
no ip address
shutdown
!
interface Serial1
no ip address
shutdown
!
interface Dialer0
no ip address
no cdp enable
!
router rip
network 10.0.0.0
!
ip classless
ip route profile
no ip http server
!
!
menu Basic title ^CC
*******************************************************
**** ****
**** This is a Basic Menu ****
**** ****
**** 1. Show Running Config ****
**** 2. Show Version ****
**** 3. Show Interface ****
**** 4. Show Frame PVC ****
**** 5. Show Ip Route ****
**** 6. Show Ipx Route ****
**** 7. Show Cdp Neighbor ****
**** 8. Echo Console to Screen ****
**** ****
**** 10. Disconnect ****
**** ****
*******************************************************
^C
menu Basic command 1 sh run
menu Basic command 2 sh ver
menu Basic command 3 sh int
menu Basic command 4 sh frame pvc
menu Basic command 5 sh ip route
menu Basic command 6 sh ipx router
menu Basic command 7 sh cdp nei
menu Basic command 8 term mon
menu Basic command 10 exit
menu Basic line-mode
!
menu Cmdr title ^CC
*******************************************************
**** ****
**** This is a Command Menu ****
**** ****
**** 1. Show Running Config ****
**** 2. Show Version ****
**** 3. Show Interface ****
**** 4. Show Frame PVC ****
**** 5. Show Ip Route ****
**** 6. Show Ipx Route ****
**** 7. Show Cdp Neighbor ****
**** 8. Echo Console to Screen ****
**** ****
**** 10. Exit To Command Line ****
**** ****
*******************************************************
^C
menu Cmdr command 1 sh run
menu Cmdr command 2 sh ver
menu Cmdr command 3 sh int
menu Cmdr command 4 sh frame pvc
menu Cmdr command 5 sh ip route
menu Cmdr command 6 sh ipx router
menu Cmdr command 7 sh cdp nei
menu Cmdr command 8 term mon
menu Cmdr command 10 menu-exit
menu Cmdr line-mode
!
!
!
!
line con 0
password cisco
transport input none
line aux 0
line vty 0 4
password cisco
!
end
====================================