Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
chown root:sys data_file
Doesn't AIX clear the suid/sgid bits when a file gets chowned? I thought they closed that loophole years ago?
#!/bin/ksh
[[ $# -eq 3 ]] || { echo invalid parameter count; exit; }
[[ -u $1 ]] && { echo you are not allowed to chown files with the suid bit set; exit; }
[[ -g $1 ]] && { echo you are not allowed to chown files with the setgid bit set; exit; }
[[ -x $1 ]] && { echo you are not alowed to chown executables; exit; }
chown $2:$3 $1
columb said:This script can then be set 755 permissions and run under sudo.