PHP Classes

File: application/libraries/dompdf/lib/ttf2ufm/src/scripts/inst_file

Recommend this page to a friend!
  Classes of harold rita   PHP Thesis Proposal Hub   application/libraries/dompdf/lib/ttf2ufm/src/scripts/inst_file   Download  
File: application/libraries/dompdf/lib/ttf2ufm/src/scripts/inst_file
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Thesis Proposal Hub
Store and publish research thesis documents
Author: By
Last change:
Date: 6 years ago
Size: 286 bytes
 

Contents

Class file image Download
#!/bin/sh # # Script to install a file (for portability reasons) # # (c) 2000 by The TTF2PT1 Project # See COPYRIGHT for full license # [ $# != 5 ] && { echo "Use: $0 file-from file-to owner group mode" >&2 exit 1 } cp -f $1 $2 \ && chown $3 $2 \ && chgrp $4 $2 \ && chmod 0$5 $2