Мануалы и справочники Linux
unset

Команда unset: опции, ключи и примеры использования

unset

Remove shell variables or functions.

  • Remove the variable foo, or if the variable doesn't exist, remove the function foo:

unset {{foo}}

  • Remove the variables foo and bar:

unset -v {{foo}} {{bar}}

  • Remove the function my_func:

unset -f {{my_func}}

Изображение Шпаргалка по командам Linux, FreeBSD и MacOS