1 |
# Warning, this file was automatically generated by faxsetup |
2 |
# on Tue Oct 21 15:51:14 EDT 1997 for root |
3 |
prompt() |
4 |
{ |
5 |
echo -n "$* " |
6 |
} |
7 |
ttyPort() |
8 |
{ |
9 |
expr $1 : 'tty\(.*\)' |
10 |
} |
11 |
ttyLocks() |
12 |
{ |
13 |
echo $UUCP_LOCKDIR/LCK..$1 |
14 |
} |
15 |
ttyAliases() |
16 |
{ |
17 |
echo /dev/$1 |
18 |
} |
19 |
ttyDev() |
20 |
{ |
21 |
echo /dev/$1 |
22 |
} |
23 |
checkPort() |
24 |
{ |
25 |
return |
26 |
} |
27 |
ttyStty() |
28 |
{ |
29 |
echo /bin/stty |
30 |
} |
31 |
ttySpeeds() |
32 |
{ |
33 |
speeds= |
34 |
if [ -z "$SPEED" ]; then |
35 |
for s in 38400 19200 9600 4800 2400 1200; do |
36 |
onDev /bin/stty $s </dev/null >/dev/null 2>&1 && speeds="$speeds $s" |
37 |
done |
38 |
fi |
39 |
echo $speeds |
40 |
} |