[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/libraries/tcpdf/fonts/ttf2ufm/ttf2ufm-src/scripts/ -> inst_file (source)

   1  #!/bin/sh
   2  #
   3  # Script to install a file (for portability reasons)
   4  #
   5  # (c) 2000 by The TTF2PT1 Project
   6  # See COPYRIGHT for full license
   7  #
   8  
   9  [ $#  != 5 ] && {
  10      echo  "Use: $0 file-from file-to owner group mode" >&2
  11      exit 1
  12  }
  13  
  14  cp -f $1 $2 \
  15  && chown $3 $2 \
  16  && chgrp $4 $2 \
  17  && chmod 0$5 $2


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1