gpt4 book ai didi

用于创建另一个文件的 Bash 脚本

转载 作者:行者123 更新时间:2023-12-05 08:14:10 25 4
gpt4 key购买 nike

我创建了一个简单的 shell 脚本:

#!/bin/bash
clear
echo "Starting Script now....."
echo "Write the info below to a new file in same directory...."

echo "name: John Smith"
echo "email: jsmith@demo.com
echo "gender: M"
echo
echo
echo "File is done"

我想在同一目录中创建一个包含姓名、电子邮件和性别详细信息的文件。我不想像这样从命令行执行此操作:

#./script.sh > my.config

我宁愿从文件本身中进行。

最佳答案

Heredoc.

cat > somefile << EOF
name: ...
...
EOF

关于用于创建另一个文件的 Bash 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8866837/

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