1
A
回答
3
在終端
export PS1='\W$ '
+0
在我繼續之前,有一種方式可以回來嗎? – 2013-04-08 18:54:31
+0
這是暫時的,您可以關閉終端。讓它堅持把你的'〜/ .profile'文件添加到你的行中。原來的PS1是'PS1 ='\ h:\ W \ u \ $'' – epatel 2013-04-08 18:56:47
2
變量PS1
定義你的路徑查找試試這個。
例如:
export PS1="\[email protected]\h \w> "
給
[email protected] /full/path/to/directory>
export PS1="\[email protected]\h \W> "
給
[email protected] directory>
現在你也可以做
export PS1="\[email protected]\h [\$(Some command with output)]> "
你將不得不編輯你的〜/ .bash_profile。所以它在啓動時加載。 從而把出口PS1=....
在.bash_profile中
重啓終端將恢復所有編輯,所以這就是爲什麼你把它放到〜/ .bash_profile中
相關問題
- 1. 如何縮短Windows cmd的路徑? GIT
- 2. 如何縮短紅帽linux的路徑?
- 3. 縮短ImageIcon的路徑
- 4. 如何縮短嵌套的資源路徑的路徑
- 5. 如何縮短圖像路徑
- 6. 如何縮短目錄路徑模式
- 7. 縮短ES2015進口路徑
- 8. 的Windows CMD縮短文件路徑
- 9. 縮短路徑字符串函數
- 10. 縮短變量以利用路徑
- 11. 縮短cmd可見文件路徑
- 12. mod_rewrite來縮短url文件路徑
- 13. 使用的WebPack resolveLoader別名或如何縮短需要路徑
- 14. 如何縮短grep緩衝區中的路徑名稱?
- 15. 如何縮短DOS提示符的路徑?
- 16. 如何縮短classpath?
- 17. 如何在c#中縮短路徑並保持其有效
- 18. 如何在linux shell腳本輸出中縮短文件路徑
- 19. 如何在金字塔中導入時縮短路徑?
- 20. 如何在使用webpack v.2時縮短絕對路徑?
- 21. 如何縮放SVG路徑
- 22. 最短路徑
- 23. 最短路徑
- 24. 路徑壓縮,此代碼如何進行路徑壓縮?
- 25. 如何從路徑中刪除最短的子路徑?
- 26. 縮短URL路由
- 27. 圖最短路徑?
- 28. DAG最短路徑
- 29. PHP GTK短路徑
- 30. 最短路徑C#
這裏是如何做到這一點在bash: HTTP ://superuser.com/questions/60555/show-only-current-directory-name-not-full-path-on-bash-prompt – Gricha 2013-04-08 18:49:33