我正在尝试使用负值运行expect
。但是我的标志错误了。
测试文件:
echo "Enter Number:"
read num
echo $num
期待文件:
spawn sh test.sh
expect -- "Enter Number:" {send "-342345"}
我甚至尝试使用\
选项来逃避负值,但它仍无效。
答案 0 :(得分:0)
试试这个
$ cat test.sh
echo "Enter number"
read num
echo $num
和
$ cat test.exp
spawn sh test.sh
set value "-342345"
expect "Enter number" {
send -- "$value\r"
}
interact
以
命令运行上述命令$ expect test.exp
答案 1 :(得分:0)
你也可以试试这个
func scrollViewDidScroll(scrollView: UIScrollView) {
let scrollOffset = scrollView.contentOffset.y;
if scrollOffset < (previousValue-100) || scrollOffset > (previousValue+100)
{
// Scrolled up or down with 100 points which you can change
previousValue = scrollOffset
}
}