5 lines
59 B
Bash
5 lines
59 B
Bash
|
#!/bin/bash
|
||
|
chown -R node:node /home/node
|
||
|
su node -c "$*"
|
||
|
|