📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
awtadalkhimacom
/
public_html
/
tests
/
Feature
/
Name
Size
Perm
Actions
📄
ExampleTest.php
0.13 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
174.22 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
options.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: sysusers.prov
#!/usr/bin/bash parse() { while read line; do [ "${line:0:1}" = '#' -o "${line:0:1}" = ';' ] && continue line="${line## *}" [ -z "$line" ] && continue set -- $line case "$1" in ('u') echo "user($2)" echo "group($2)" # TODO: user:group support ;; ('g') echo "group($2)" ;; ('m') echo "user($2)" echo "group($3)" ;; esac done } while read fn; do parse < "$fn" done
Save