mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
11 lines
164 B
Plaintext
11 lines
164 B
Plaintext
set -o history
|
|
HISTSIZE=256
|
|
HISTFILE=/dev/null
|
|
|
|
# these two lines should be the same
|
|
echo ${BASH_VERSION%\.*}
|
|
echo $(fc -nl -1)
|
|
|
|
echo ${BASH_VERSION%\.*}
|
|
fc -nl -1
|