如何从当前目录外部运行任何可执行文件?

时间:2015-08-08 03:02:29

标签: unix

假设我在pwd中有一个可执行文件a.out(假设它将打印“hello world”),如/ home / My_folder / Current_folder /,我想从My_folder而不是Current_folder运行它。 我用这种方式试了一下:

〜$ pwd

/家庭/ My_folder

〜$ cd Current_folder / a.out

〜/ Current_folder $

没有显示“hello world”表示a.out根本没有运行。 我只想从My_folder运行它,而不是从Current _folder运行它。

2 个答案:

答案 0 :(得分:1)

〜$ pwd

/家庭/ My_folder

./ Current_folder / a.out的

答案 1 :(得分:1)

正确的格式是从root,/开始,或使用当前目录.。这些例子假设“〜$”是你的提示。

在系统的任何位置使用/

  

〜$ /home/My_folder/Current_folder/a.out

使用.目录中的/home/My_Folder

  

〜$ ./Current_folder/a.out