在我的MacBook Pro上,我試圖創建一個快速命令來檢查我的家庭Internet速度。在終端中運行自定義別名命令導致「未找到命令」
這website提供的命令我使用:
curl -O http://speedtest.wdc01.softlayer.com/downloads/test10.zip > /dev/null
我真的不喜歡每次都讓我通過運行
Users-MacBook-Pro:~ user$ sudo nano /.bash_profile
但是,當關閉終端並打開一個新的,我嘗試新的公司mmand:
Users-MacBook-Pro:~ user$ ispeed
,並得到如下:
-bash: ispeed: command not found
如何解決?
'/ .bash_profile'與'〜/ .bash_profile'不一樣。 –
@Benjamin W但我在我的家庭文件夾?當我在前面放一個「〜」時會發生什麼變化? – vkapustin
'/ .bash_profile'是根文件夾中'.bash_profile'的絕對路徑,'/'(並且該文件不存在),所以不管你在哪裏,它都會嘗試找到它在根文件夾中。 '〜/ .bash_profile'也是一個絕對路徑,但是對於你的home文件夾來說,文件實際上就是這個文件夾。 –