From 0ad8632483ad54f82639ef9bbabcc08e28f57d28 Mon Sep 17 00:00:00 2001 From: Ronnie Gane Date: Sun, 2 Dec 2018 06:55:20 +1300 Subject: [PATCH] unset: add page (#2570) --- pages/linux/unset.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/linux/unset.md 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}}`