Это часть .bashrc из Ubuntu (очевидно, тот же язык):
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
Итак, что это за язык?В нем есть ключевое слово fi.И как я могу выучить этот язык?Я предпочитаю онлайн-учебники или репозитории исходного кода книгам.