11 lines
136 B
Text
11 lines
136 B
Text
|
get_stack () {
|
||
|
if [[ ! -z $1 && $1 == "wc" ]];then
|
||
|
ls /opt/nodemecu/stack | wc -l
|
||
|
else
|
||
|
ls /opt/nodemecu/stack | tail -1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
|
||
|
|