mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
7 lines
184 B
Bash
Executable File
7 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
|
|
WWWUSER=$(ps aux | egrep '([a|A]pache|[h|H]ttpd|lighttpd|[n|N]ginx|h2o)' | awk '{ print $1}' | uniq | grep -v `whoami` | tail -1)
|
|
|
|
sudo -u $WWWUSER php util/storageconv $*
|
|
|