Todd, here are the results of my run:

[root@www root]# cat getfun
# ed is a real program, so use something else to avoid confusion.
# Usage: ged  <file1 ... fileN>
function gedx {
   while [[ $1 ]]; do
      gedit $1 &
      shift
   done
  }

function gedz {
   while [[ -n $1 ]]; do
      gedit $1 &
      shift
   done
  }
[root@www root]# ls -al getfun
-rwxr-xr-x    1 root     root          260 Jan 11 17:29 getfun*
[root@www root]# ./getfun
Profile executed
[root@www root]# type gedx
bash: type: gedx: not found
[root@www root]# type gedz
bash: type: gedz: not found
[root@www root]# gedx
bash: gedx: command not found
[root@www root]# gedz
bash: gedz: command not found

Arggg ....



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to