フォルダcron-scripts
に50以上のスクリプトがあり、root権限でのみcronシェルで実行したい。
# cd /var/www/html/cron-scripts/
# chown root:root scripts1.php
# chown fishman:users scripts1.php
# chown root:root scripts2.php
# chown fishman:users scripts2.php
*
代わりに、同じ効果を持つ上記のコードを使用しますか?
# cd /var/www/html/cron-scripts/
# chown root:root *
# chown fishman:users *
そして、私が作成した場合、root権限を削除する方法はchown root:root other-script.php
?
つまり、このスクリプトをすべての人に公開したいのです。(chown all-users:users other-script.php)ありがとう。