#!/bin/sh # # This script creates a sym-link # # Install in your ~/.gnome2/nautilus-scripts directory. LN_TARGET=$(gdialog --title "TARGET?" --inputbox "Enter sym-link target" 200 550 2>&1) LN_LINKNAME=$(gdialog --title "LINKNAME?" --inputbox "Enter the sym-link name" 200 550 2>&1) /bin/ln -s $LN_TARGET $LN_LINKNAME