Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,在 Emacs 中,使用 shell-command 调用 perl 脚本,
M-! perl my_script.pl
或调用一个简单的外部命令,
M-! dir
我不想在 Emacs 的命令窗口中显示任何输出。
PS:我的操作系统是Windows。
Linux:
M-! perl my_script.pl>/dev/null
视窗:
M-! perl my_script.pl> NUL
这不会返回输出。