当它是一个参数时,bash 或其他 shell 的历史记录是否可以保存评估命令的输出?
$ echo $(pwd) && history
/root
0 I want something like:
1 echo $(pwd) && history
2 echo /root && history
VS
$ echo $(pwd) && history
/root
0 echo $(pwd) && history
当它是一个参数时,bash 或其他 shell 的历史记录是否可以保存评估命令的输出?
$ echo $(pwd) && history
/root
0 I want something like:
1 echo $(pwd) && history
2 echo /root && history
VS
$ echo $(pwd) && history
/root
0 echo $(pwd) && history