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
4 years ago
|
#!/usr/bin/env bash
|
||
4 years ago
|
#ft=bash
|
||
2 years ago
|
if [[ ${BASH_VERSION} != "3.2*" ]]; then
|
||
|
shopt -s autocd
|
||
4 years ago
|
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
|