HEX
Server: Apache
System: Linux darrell.nocdirect.com 4.18.0-513.18.2.el8_9.x86_64 #1 SMP Sat Mar 30 06:10:41 EDT 2024 x86_64
User: joderbya (1358)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/joderbya/quick-step-ei.com/dollibar/dev/tools/fixperms.sh
#!/bin/sh
#------------------------------------------------------
# Script to set/fix permissions on files
#
# Laurent Destailleur - eldy@users.sourceforge.net
#------------------------------------------------------
# Usage: fixperms.sh (list|fix)
#------------------------------------------------------

# Syntax
if [ "x$1" != "xlist" -a "x$1" != "xfix" ]
then
	echo "Fix permissions of files"
	echo "Usage: fixperms.sh (list|fix)"
fi

# To detect
if [ "x$1" = "xlist" ]
then
	echo Feature not yet available 
fi

# To convert
if [ "x$1" = "xfix" ]
then
	find ./htdocs -type f -iname "*.php" -exec chmod a-x {} \; 
	chmod a+x ./scripts/*/*.php
	chmod a+x ./scripts/*/*.sh
	chmod g-w ./scripts/*/*.php
	chmod g-w ./scripts/*/*.sh
fi