下面介紹兩種方法來在右鍵新增「開啟終端」這個選項。
第一種方法:
安裝乙個包,即可在右鍵裡面新增乙個「開啟終端」的選單。
sudo
apt-get
install
nautilus-open-terminal
,安裝完成,登出以後再回來,就可以右鍵開啟
terminal
了) 第二種方法:
進入主目錄的.gnome2/nautilus-scripts目錄。新建乙個檔案,檔名任意(這個檔名會顯示在右鍵選單裡,最好是通俗易懂的,比如「開啟終端」或「open-terminal」),檔案內容如下。
#!/bin/bash
if [ -n "$nautilus_script_selected_file_paths" ]; then
set $nautilus_script_selected_file_paths
if [ $# -eq 1 ]; then
destination="$1"
# go to file's directory if it's a file
if [ ! -d "$destination" ]; then
destination="`dirname "$destination"`"
fielse
zenity --error --title="error - open terminal here" \
--text="you can only select one directory."
exit 1
fielse
destination="`echo "$nautilus_script_current_uri" | sed 's/^file:\/\///'`"
fi# it's only possible to go to local directories
if [ -n "`echo "$destination" | grep '^[a-za-z0-9]\+:'`" ]; then
zenity --error --title="error - open terminal here" \
--text="only local directories can be used."
exit 1
ficd "$destination"
exec x-terminal-emulator
新增完後,把此檔案加上可執行的許可權。
chmod +x 檔案
現在來講講兩種方法的優劣:
1. 第二種方法建出來的是乙個二級選單,它先是在右鍵選單中新增乙個名叫scripts的選單,在這個選單下才是我們需要的「開啟終端」或「open- terminal」(這個地方的名字是你新建的指令碼的檔名),所以顯得有些不方便。第一種方法是直接在右鍵選單中新增選單。
ps:第二種方法有很大的擴充套件性,如果能自己寫指令碼,可以實現很多自定義的功能,比如傳送到郵件/修改檔案許可權等等實用的功能。這兩種方法是可以並存的,如果不嫌麻煩的話,推薦兩個都安裝,實現並存。
ubuntu右鍵新增開啟終端的快捷選單
下面介紹兩種方法來在右鍵新增 開啟終端 這個選項。第一種方法 安裝乙個包,即可在右鍵裡面新增乙個 開啟終端 的選單。sudo apt get install nautilus open terminal 安裝完成,登出以後再回來,就可以右鍵開啟 terminal 了 第二種方法 進入主目錄的.gno...
右鍵新增開啟cmd視窗
regedit4 hkey classes root shell cmdhere cmd here hkey classes root shell cmdhere command cmd.exe c start cmd.exe k pushd l hkey classes root folder s...
windows右鍵選單中新增開啟方式
1 開啟登錄檔編輯器。開啟執行視窗,快捷鍵,開始 r。輸入 regedit 回車確定。2 進入登錄檔編輯器的hkey classes root資料夾下的 子資料夾下的shell資料夾 3 新建項。以新增ultraedit為例,將新建項重新命名為ultraedit。然後在該項中新建項,並重命名為com...