mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-30 02:53:52 +00:00
add _is_function
This commit is contained in:
parent
56a45aa883
commit
03f22c90c0
@ -10,7 +10,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-13-gca73be8
|
#### $$VERSION$$ v0.70-dev2-14-g56a45aa
|
||||||
#
|
#
|
||||||
# Exit Codes:
|
# Exit Codes:
|
||||||
# - 0 sucess (hopefully)
|
# - 0 sucess (hopefully)
|
||||||
@ -516,6 +516,10 @@ inproc() {
|
|||||||
tmux send-keys -t "$copname" "${MESSAGE[0]} ${URLS[*]}
|
tmux send-keys -t "$copname" "${MESSAGE[0]} ${URLS[*]}
|
||||||
"
|
"
|
||||||
}
|
}
|
||||||
|
_is_function()
|
||||||
|
{
|
||||||
|
[ "$(LC_ALL=C type -t "$1")" = "function" ]
|
||||||
|
}
|
||||||
process_updates() {
|
process_updates() {
|
||||||
MAX_PROCESS_NUMBER=$(echo "$UPDATE" | sed '/\["result",[0-9]*\]/!d' | tail -1 | sed 's/\["result",//g;s/\].*//g')
|
MAX_PROCESS_NUMBER=$(echo "$UPDATE" | sed '/\["result",[0-9]*\]/!d' | tail -1 | sed 's/\["result",//g;s/\].*//g')
|
||||||
for ((PROCESS_NUMBER=0; PROCESS_NUMBER<=MAX_PROCESS_NUMBER; PROCESS_NUMBER++)); do
|
for ((PROCESS_NUMBER=0; PROCESS_NUMBER<=MAX_PROCESS_NUMBER; PROCESS_NUMBER++)); do
|
||||||
|
Loading…
Reference in New Issue
Block a user