home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / cmd / filename next >
Encoding:
Text File  |  1996-11-24  |  77 b   |  11 lines

  1. #!/bin/sh
  2.  
  3. file=$RHOME/$1/$2
  4.  
  5. if [ -r $file ]
  6. then
  7.     echo $file
  8. else
  9.     echo
  10. fi
  11.