We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ubuntu下的/bin/sh 都是链到dash的,dash函数不需要function关键字
解决方法: 1.vim ./phptrace
2.vim ./phptrace 去掉function关键词,还会有语法报错,127行($lines)不支持这种写法,改成$(lines)
The text was updated successfully, but these errors were encountered:
Use /bin/bash as the shell , fix issue #10
581af28
No branches or pull requests
ubuntu下的/bin/sh 都是链到dash的,dash函数不需要function关键字
解决方法:
1.vim ./phptrace
!/bin/sh => #!/bin/bash
2.vim ./phptrace$lines)不支持这种写法,改成$ (lines)
去掉function关键词,还会有语法报错,127行(
The text was updated successfully, but these errors were encountered: