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.
我正在使用 Zenity 工具弹出一个条目对话框。但是如何将输入到文本框中的值存储到变量中?现在,字符串正在打印到控制台本身。我希望将它存储到一个变量中来处理它!
使用命令替换:
reply=$(zenity --entry)
要分配输出值,请使用 $(command) 包装您的命令并将其分配给变量
VALUE=$(zenity --entry)