mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-24 11:08:43 +00:00
17 lines
201 B
Plaintext
17 lines
201 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
version=$1
|
||
|
|
||
|
read -r
|
||
|
while [ -z "`echo $REPLY | grep -e "^#\+ $version"`" ]
|
||
|
do
|
||
|
read -r
|
||
|
done
|
||
|
|
||
|
read -r
|
||
|
while [ -z "`echo $REPLY | grep -e "^#\+"`" ]
|
||
|
do
|
||
|
echo "$REPLY"
|
||
|
read -r
|
||
|
done
|