我正在尝试重新绑定退格键以实际执行向后删除而不是 Ch ?在 ubuntu 上的 emacs 中。
在我的.emacs.el
初始化文件中,我有(global-set-key [(control ?h)] 'delete-backward-char')
在emacs启动时我得到Invalid read syntax: )
我正在尝试重新绑定退格键以实际执行向后删除而不是 Ch ?在 ubuntu 上的 emacs 中。
在我的.emacs.el
初始化文件中,我有(global-set-key [(control ?h)] 'delete-backward-char')
在emacs启动时我得到Invalid read syntax: )
因此,在一个目录/home/pi/remoteinfo/temp/code
中有一个名为 C 的程序a.out
和一个名为tempstart.sh
.
tempstart.sh 文件中的内容如下:
#!/bin/bash
./a.out
现在,当我进入时,/home/pi/remoteinfo/temp/code
我可以输入./tempstart.sh
,我的程序将开始执行。
但是当我尝试tempstart.h
从其目录之外的任何地方运行时,我得到
line 3: ./a.out: No such file or directory
.
发生了什么,我该如何解决?
我正在使用带有默认操作系统的 Raspberry Pi 3