Rev 7218 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#!/bin/sh# ${R_HOME}/bin/filename## Using `found' ensures that at least an empty string is returned;## without, system.file() returns character(0) if nothing is found.found=for f in ${*}; doif [ -r $f ]; then echo "$f"; found=1; fidonetest -z "$found" && echo### Local Variables: ***### mode: sh ***### sh-indentation: 2 ***### End: ***