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.
我要完成的任务是编写一个脚本来访问 Red Hat 服务器,导航到某个目录,并将内容添加到文本文件中。我将如何完成这项任务?我使用什么脚本语言?等等
我在脚本语言方面没有任何经验,我只是 Java 应用程序和偶尔的 C# 方面的专家。
希望有人可以提供帮助。这对我来说非常有用。
如果您只是想追加一行,您可以使用 SSH(用于连接)并像这样连接到文件的末尾:
echo "New line to text file" | ssh myserver.com 'cat >> /var/myfile.txt'
如果您尝试更改内容,则需要先下载该文件,然后再通过诸如sed或之类的实用程序运行该文件awk,然后将其上传回服务器。scp可用于安全下载和上传文件,但此处描述sed或awk超出了简要回答的范围。
sed
awk
scp