diff --git a/pages/linux/unset.md b/pages/linux/unset.md new file mode 100644 index 000000000..4de7038b2 --- /dev/null +++ b/pages/linux/unset.md @@ -0,0 +1,11 @@ +# unset + +> Remove shell variables or functions. + +- Remove the variables foo and bar: + +`unset {{foo}} {{bar}}` + +- Remove the function my_func: + +`unset -f {{my_func}}`