SMS message 使用minic-6ren">
gpt4 book ai didi

linux - Bash enter & ctrl-z 按键

转载 作者:IT王子 更新时间:2023-10-29 01:26:37 28 4
gpt4 key购买 nike

我有一个 minicom 命令,使用 SSH/Putty 通过调制解调器发送 SMS,这是命令

AT^HCMGS="destination number"<press ENTER>
> SMS message <press CTRL + Z>

使用minicom成功执行命令

我想问一下如何在 bash 中模拟按下 ENTER & CTRL+Z我可以这样写脚本吗?

#!/bin/bash
echo -e -n "AT^HCMGS="888"(I don't know how to insert enter/return)" > /dev/ttyUSB0
echo -e -n "SMS message (I don't know how to insert ctrl+z)" > /dev/ttyUSB0

我想在openWRT中用这个脚本集成一个程序(motion linux)

谢谢!

最佳答案

从 shell 向号码 +48333444555 发送消息test:

echo -e 'AT+CMGS="+48333444555"^Mtest^Z' > /dev/ttyUSB0

重要:

  1. 要得到 ^M 你需要按 Ctrl+V 然后按 Ctrl+M
  2. 要得到 ^Z 你需要按 Ctrl+V 然后按 Ctrl+Z

关于linux - Bash enter & ctrl-z 按键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27310630/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com