通过打开包含内容的文本编辑器来捕获用户输入

发布于 2024-12-04 03:10:14 字数 354 浏览 2 评论 0原文

从 bash 脚本中,我想

  1. 为当前用户打开默认文本编辑器,
  2. 在其中粘贴字符串 $original_content
  3. 一旦用户修改内容,然后关闭文本编辑器,
  4. 将修改后的字符串捕获到变量 $modified_content
  5. 然后将 $modified_content 保存到 $output_file

Google 搜索捕获用户输入显示 read 这不是我在看什么 为了。

有人能指出我正确的方向吗?

谢谢

From a bash script, I'd like to

  1. Open the default text editor for current user
  2. Paste a string $original_content in it
  3. Once the user modifies the content then closes the text editor,
  4. Capture the modified string into a variable $modified_content
  5. Then save $modified_content to an $output_file

Google searches for capturing user input shows read which is not what I'm looking for.

Can someone point me to the right direction?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牵强ㄟ 2024-12-11 03:10:14

此方法应该适用于大多数编辑器:

#!/bin/bash

original_content="Your original content"

echo $original_content > /tmp/user_input.tmp

# For example:
# DEFAULT_EDITOR=/usr/bin/vi
$DEFAULT_EDITOR /tmp/user_input.tmp

modified_content=`cat /tmp/user_input.tmp`

echo $modified_content > /tmp/output_file

此脚本可能有点冗长,但它执行除粘贴部分之外的所有所需操作,因为您可能必须适应所有类型的编辑器才能正确“粘贴”细绳。该脚本利用了这样的好处:使用文件名作为参数调用大多数编辑器会打开该文件进行编辑,从而将您的 $original_content“粘贴”到编辑器中。

This method should hopefully work for most editors:

#!/bin/bash

original_content="Your original content"

echo $original_content > /tmp/user_input.tmp

# For example:
# DEFAULT_EDITOR=/usr/bin/vi
$DEFAULT_EDITOR /tmp/user_input.tmp

modified_content=`cat /tmp/user_input.tmp`

echo $modified_content > /tmp/output_file

This script may be a little drawn out but it performs all the actions you wanted except for the pasting part, since you'd probably have to accommodate for all varieties of editors to properly "paste" a string. This script utilizes the benefit that calling most editors with a filename as a parameter opens that file for editing thereby "pasting" your $original_content in the editor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文