You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
249 B
16 lines
249 B
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
state="$1"
|
||
|
|
||
|
case $state in
|
||
|
1)
|
||
|
gr=enabled
|
||
|
;;
|
||
|
0)
|
||
|
gr=disabled
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
cd /opt/ksp
|
||
|
cat phones.txt | awk '{print $1}' | grep '^[3-5]' | xargs -i -n1 -P0 ./autoanswer_line.sh '{}' "$state" | grep $gr | cut -d. -f4| cut -d' ' -f1
|