lstsoftlinks
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. #!/bin/sh
  2. # $Id: lstsoftlinks,v 1.1 2000/03/07 07:06:38 mrsam Exp $
  3. #
  4. # Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
  5. # distribution information.
  6. for f in $*
  7. do
  8. SOFTLINK=""
  9. for component in `echo $f | tr '-' ' '`
  10. do
  11. if test "$SOFTLINK" = ""
  12. then
  13. SOFTLINK="$component"
  14. else
  15. SOFTLINK="$SOFTLINK""-$component"
  16. fi
  17. if test -f $SOFTLINK/LANGUAGE
  18. then
  19. test `cat $SOFTLINK/LANGUAGE` = $SOFTLINK && continue
  20. fi
  21. echo $SOFTLINK
  22. done
  23. done