Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图通过这行命令在 shell 中使用我的腻子连接到路由器
putty.exe -ssh <IP> p 22 -l <USERNAME> -pw <PASSWORD> -m C:COMMAND.txt
每次我运行时,它都会显示“行的自动命令无效”
可以将我带到路由器的 COMMAND.txt 的正确命令是什么?
要么你错过了之前的破折号p:
p
putty.exe -ssh <IP> -p 22 -l <USERNAME> -pw <PASSWORD> -m C:COMMAND.txt
或者(假设在 StackOverflow 中键入命令是错误的)如果您发布C:COMMAND.txt. 也尝试使用该文件的完整路径,而不是指定驱动器而不是路径。
C:COMMAND.txt