我试图在只有bash和原始基本实用程序的系统上执行ioctl调用。
有没有办法执行任意ioctl命令(如果params只是整数)到/ dev在shell脚本中的特定设备文件,而无需编写C / perl / python程序?就像是
“magic_ioctl / dev / console 30 1 2”,它将调用“ioctl(open(”/ dev / console“),30,1,2);”。
为什么你拒绝perl / c / python解决方案? 你可以这样做perl一行这样: perl -e require“sys / ioctl.ph”; ioctl(…);
原文链接:https://www.f2er.com/bash/388871.html