8 lines
132 B
Bash
Executable File
8 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# set the xterm window title
|
|
TERMTITLE="man 4 console_ioctl"
|
|
echo -ne "\\033]0;${TERMTITLE}\\007"
|
|
|
|
man 4 console_ioctl
|