gpt4 book ai didi

python - 如何在 Mac 上的 python 脚本中删除 bash 历史记录?

转载 作者:太空宇宙 更新时间:2023-11-03 15:15:50 25 4
gpt4 key购买 nike

我想在我的 Macbook Pro 上使用 python 脚本删除 bash 历史记录。

我知道两种使用 bash shell 删除 bash 历史记录的方法

1.rm ~/.bash_history

2.历史-c

但是这些命令在带有子进程的 python 脚本中不起作用:

1.rm ~/.bash_history

import subprocess
subprocess.call([‘rm’, ‘~/.bash_history'])

错误:

rm: ~/.bash_history: 没有那个文件或目录

2.历史-c

import subprocess
subprocess.call(['history', '-c'])

错误:

File "test.py", line 8, in subprocess.call(['history', '-c']) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line >524, in call return Popen(*popenargs, **kwargs).wait() File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line >711, in init errread, errwrite) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line >1308, in _execute_child raise child_exception

有什么想法吗?

最佳答案

这里有两个问题:

首先,python不理解~,需要展开一下:

subprocess.call(['rm', os.path.expanduser('~/.bash_history')])

其次,history 是一个内置的 shell。使用 shell 调用它:

subprocess.call(['bash', '-c', 'history -c'])

关于python - 如何在 Mac 上的 python 脚本中删除 bash 历史记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21109841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com