You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
287 B
Bash
13 lines
287 B
Bash
#!/usr/bin/env bash
|
|
#ft=bash
|
|
if [[ ${BASH_VERSION} != "3.2*" ]]; then
|
|
shopt -s autocd
|
|
fi
|
|
|
|
# append to the history file, don't overwrite it
|
|
shopt -s histappend
|
|
|
|
# check the window size after each command and, if necessary,
|
|
# update the values of LINES and COLUMNS.
|
|
shopt -s checkwinsize
|