nodemecu/functions

11 lines
133 B
Text
Raw Normal View History

2022-02-23 14:42:32 +00:00
get_stack () {
if [[ ! -z $1 && $1 == "wc" ]];then
ls $install_dir/stack | wc -l
2022-02-23 14:42:32 +00:00
else
ls $install_dir/stack | tail -1
2022-02-23 14:42:32 +00:00
fi
}