read
เป็นทุบตี builtin (ดูtype read
) คุณสามารถค้นหาเอกสารด้วยman bash
:
read [-ers] [-a aname] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]
[...]
-e If the standard input is coming from a terminal, readline (see READLINE above) is used to obtain the line.
Readline uses the current (or default, if line editing was not previously active) editing settings.
หรือคุณสามารถใช้help read
:
read: read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]
-e use Readline to obtain the line in an interactive shell
-e
สวิตช์ช่วยให้การสนับสนุน ReadLine ซึ่งโดยทั่วไปจะช่วยให้ทุกคุณสมบัติที่มีอยู่ในเปลือกพร้อมรวมทั้งการจัดการ Backspace
ดังนั้นread -en 5
ควรทำในสิ่งที่คุณต้องการ
read
อ่าน 'จำนวนอักขระที่ป้อน' ยังคงไม่ได้รับคำตอบ