instances
olduğu gibi birkaç boşlukla ayrılmış dizeler içerir snapshots
.
Her bir örnek-anlık görüntü çifti ile aşağıdaki komutu çalıştırmak istiyorum.
ec2-attach-volume --instance $instances --device /dev/sdf $snapshots
Örneğin, eğer instances
içeren A B C
, ve snapshots
içeren 1 2 3
, Komutun böyle çağrılmasını istiyorum:
ec2-attach-volume -C cert.pem -K pk.pem --instance A --device /dev/sdf 1
ec2-attach-volume -C cert.pem -K pk.pem --instance B --device /dev/sdf 2
ec2-attach-volume -C cert.pem -K pk.pem --instance C --device /dev/sdf 3
Birini veya diğerini yapabilirim xargs -n 1
, ama ikisini de nasıl yaparım?