차이
문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 다음 판 | 이전 판 | ||
| linuxfromscratch:12.1:161-creating_the_etcinputrc_file [2024/05/18 16:47] – 만듦 - 바깥 편집 127.0.0.1 | linuxfromscratch:12.1:161-creating_the_etcinputrc_file [2024/06/15 13:22] (현재) – [9.8. etc/inputrc 파일 만들기] baecy | ||
|---|---|---|---|
| 줄 1: | 줄 1: | ||
| + | ^ Linux From Scratch - Version 12.1-systemd | ||
| + | ^ Chapter 9. System Configuration | ||
| + | |[[.: | ||
| + | |시스템 로캘 설정 | ||
| + | |||
| + | ---- | ||
| + | |||
| + | ===== 9.8. etc/inputrc 파일 만들기 ===== | ||
| + | |||
| + | '' | ||
| + | |||
| + | 대부분의 경우 사용자별 설정이 필요하지 않으므로 아래 명령은 로그인하는 모든 사람이 사용하는 전역 ''/ | ||
| + | |||
| + | '' | ||
| + | |||
| + | 아래는 다양한 옵션의 기능을 설명하는 주석과 함께 일반적인 전역 '' | ||
| + | |||
| + | <code bash> | ||
| + | cat > / | ||
| + | # Begin / | ||
| + | # Modified by Chris Lynn < | ||
| + | |||
| + | # Allow the command prompt to wrap to the next line | ||
| + | set horizontal-scroll-mode Off | ||
| + | |||
| + | # Enable 8-bit input | ||
| + | set meta-flag On | ||
| + | set input-meta On | ||
| + | |||
| + | # Turns off 8th bit stripping | ||
| + | set convert-meta Off | ||
| + | |||
| + | # Keep the 8th bit for display | ||
| + | set output-meta On | ||
| + | |||
| + | # none, visible or audible | ||
| + | set bell-style none | ||
| + | |||
| + | # All of the following map the escape sequence of the value | ||
| + | # contained in the 1st argument to the readline specific functions | ||
| + | " | ||
| + | " | ||
| + | |||
| + | # for linux console | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | |||
| + | # for xterm | ||
| + | " | ||
| + | " | ||
| + | |||
| + | # for Konsole | ||
| + | " | ||
| + | " | ||
| + | |||
| + | # End / | ||
| + | EOF | ||
| + | </ | ||