GNU Bash 版本 5.1、WSL、Ubuntu 22.04.3 LTS。
$ bash -version
bash -version
GNU bash, version 5.1.16(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
- 编辑
.bashrc
、创建功能foo
:
foo() {
echo 'GHOST'
}
保存并退出
- 来源
.bashrc
:
. .bashrc
现在foo
是一个有效的函数:
type foo
foo is a function
foo ()
{
echo 'GHOST'
}
调用
foo()
,它会打印GHOST
编辑
.bashrc
,删除该功能,重新来源foo
作为一个函数,仍然可供调用和type
。重新启动终端窗口,它现在停止存在。
当然,当您重命名某个函数时也会发生这种情况;您会不断调用旧版本,同时重复按“UP”键以使用历史记录中的版本。
漏洞?功能?漏洞?