aboutsummaryrefslogtreecommitdiffstats
path: root/gotrc-examples/readline
blob: 3401221e325e485aa3bd44124d2fc19a86929d87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- shell-script -*-

# This module requires Bash as the gates-of-tartaros interpreters.
# 
# This module uses readline when reading, for example the username,
# from the terminal. This allows the user to flexibly change the
# line instead of erasing in order to get to the wanted possition.


_read ()
{
    read -e user
}