| Server IP : 138.197.176.125 / Your IP : 216.73.216.41 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/crm_easylife/libraries/tcpdf/fonts/ttf2ufm/ttf2ufm-src/scripts/ |
Upload File : |
#!/usr/bin/perl
#
# Script to create a directory for installation
#
# (c) 2000 by The TTF2PT1 Project
# See COPYRIGHT for full license
#
if( $#ARGV!=0 && $#ARGV !=3) {
die "Use: $0 dir-name [owner group mode]\n"
}
if( $#ARGV==3 ) {
$owner = $ARGV[1];
$group = $ARGV[2];
eval "\$mode = 0$ARGV[3];";
} else {
$owner = "root";
$group = "bin";
$mode = 0755;
}
@sl = split(/\//, $ARGV[0]);
$prefix = shift(@sl);
if($prefix eq "") {
$prefix = "/" . shift(@sl);
}
while(1) {
if( ! -d "$prefix" ) {
die "Unable to create directory $prefix:\n$!\n"
unless mkdir($prefix, $mode);
die "Unable to change owner of $prefix to $owner\n"
if system("chown $owner $prefix");
die "Unable to change group of $prefix to $group\n"
if system("chgrp $group $prefix");
}
if($#sl < 0) {
last;
}
$prefix .= "/" . shift(@sl);
}
exit(0);