เพื่อให้เป็นการไม่เสียเวลา เริ่มจากการเปิด terminal ขึ้นมาจากนั้นพิมพ์คำสั่งตามนี้เพื่อสร้างสคริปต์ใหม่ในสคริปต์ไดเร็กทอรี่
gedit ~/.gnome2/nautilus-scripts/Open\ with\ geditจากนั้นนำข้อความด้านล่าง copy and paste ลงไปในตัว Text editor, สามารถหาสคริปต์เพิ่มเติมได้ที่นี่ G-Scripts site
#!/bin/bashเมื่อวางเรียบร้อยแล้วก็บันทึกและปิดตัวโปรแกรม Gedit
#
# Nautilus script -> open gedit
#
# Owner : Largey Patrick from Switzerland
# patrick.largey@nazeman.org
# www.nazeman.org
#
# Licence : GNU GPL
#
# Copyright (C) Nazeman
#
# Ver. 0.9-1 Date: 16.02.2002
# Add multiple file open in the same windows
#
# Ver: 0.9 Date: 27.10.2001
# Initial release
#
# Dependence : Nautilus (of course)
# Gnome-utils (gdialog)
#
filesall=”"
while [ $# -gt 0 ]
do
files=`echo “$1″ | sed ‘s/ /\?/g’`
filesall=”$files $filesall”
shift
done
gedit $filesall&
หลังจากนั้นเราจะทำให้ไฟลล์สามารถรันได้ โดยใช้คำสั่งต่อไปนี้
chmod u+x ~/.gnome2/nautilus-scripts/Open\ with\ geditเท่านี้ก็เรียบร้อยแล้วครับ
เราสามารถเรียกใช้สคริปต์โดยทำการคลิ๊กขวาที่ไฟลล์ จากนั้นจะเห็นเมนู Script เลื่อน mouse ไปเลือกที่ Script จะแสดงเมนูย่อยที่เราเพิ่งสร้างกัน นั่นก็คือ Open with gedit
Credit :: HowtoGeek , G-Scripts site
ไม่มีความคิดเห็น:
แสดงความคิดเห็น