浏览代码

unset: clarify example with no options (#4126)

jn64 4 年之前
父节点
当前提交
222bc41873
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      pages/linux/unset.md

+ 5 - 1
pages/linux/unset.md

@@ -2,9 +2,13 @@
 
 > 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 {{foo}} {{bar}}`
+`unset -v {{foo}} {{bar}}`
 
 - Remove the function my_func: