#!/bin/bash counter=$1 while [ $counter -gt 0 ] do cp -f testcall.bak testcall.call chmod 777 testcall.call mv -f testcall.call /var/spool/asterisk/outgoing counter=$(( $counter - 1 )) done