~vcs-imports/xena/trunk

« back to all changes in this revision

Viewing changes to ext/src/javahelp/jhMaster/JavaHelp/build/tools/empty

  • Committer: matthewoliver
  • Date: 2009-12-10 03:18:07 UTC
  • Revision ID: vcs-imports@canonical.com-20091210031807-l086qguzdlljtkl9
Merged Xena Testing into Xena Stable for the Xena 5 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/csh -f
 
2
# One argument, a directory
 
3
# 0 status if no regular files in it
 
4
 
 
5
foreach i (`/bin/ls $1`)
 
6
if ( -f $1/$i ) exit 1
 
7
end
 
8
 
 
9
exit 0