Substituição de comando no script bash $ 1 value

1

Eu tenho este script simples que altera as permissões nos meus sites do apache2

/var/www/html# cat permissions_setup.sh 
chown -R root $1
chgrp -R www-data $1
chmod -R 750 $1
chmod g+s $1

Eu tenho dois scripts shell .sh no meu diretório html/

/var/www/html# ll
total 40
drwxr-xr-x 8 root root     4096 Jul  5 16:45 ./
drwxr-xr-x 4 root root     4096 Jun 13 18:37 ../
drwxr-s--- 5 root www-data 4096 Jun  6 18:17 foo.com/
drwxr-s--- 5 root www-data 4096 Jun 13 18:52 bar.org/
drwxr-xr-x 5 root root     4096 Jun 13 18:13 barfoo.com/
-rwxr-xr-x 1 root root       67 Jul  5 16:44 permissions_setup.sh*
drwxr-xr-x 5 root root     4096 Jun 13 18:42 foobar.com/
-rwx------ 1 root root     1163 Jun 13 18:41 website_add.sh*

Já executei o script em dois sites. Eu estou tentando usar a substituição de comando nos outros sites, como tal:

/var/www/html# ./permissions_setup.sh $(ls -I "*.sh")

ou

/var/www/html# ls -I "*.sh" $(./permissions_setup.sh)
chown: missing operand after ‘root’
Try 'chown --help' for more information.
chgrp: missing operand after ‘www-data’
Try 'chgrp --help' for more information.
chmod: missing operand after ‘750’
Try 'chmod --help' for more information.
chmod: missing operand after ‘g+s’
Try 'chmod --help' for more information.

Mas nenhum dos comandos alterou as permissões em todos os sites. Não estou interessado em editar o script. Posso usar a substituição de comando neste cenário?

    
por phillipsk 05.07.2015 / 23:42

1 resposta

2

Como você não deseja editar o script:

for f in $(ls -I "*.sh"); do ./permissions_setup.sh $f; done;
    
por 06.07.2015 / 00:05