0

我试图弄清楚如何使用 ssh 命令将内容/代码添加到已经包含代码的 .js 文件的末尾。

IE....

touch ./ap/includes/ckeditor/ckeditor.js
Maintain current code
echo "add custom end code only"> ./ap/includes/ckeditor/ckeditor.js
4

1 回答 1

2

ssh命令用于连接到另一台服务器。

您可以将文本附加到文件末尾的是echo "something" >> /your/file.

所以根据你的代码:

touch ./ap/includes/ckeditor/ckeditor.js
Maintain current code
echo "add custom end code only" >> ./ap/includes/ckeditor/ckeditor.js
                                ^
                                |_ changed this

顺便说一句,该touch部分是不必要的。在文件内回显时,将更新文件的日期。如果文件不存在,它将自动使用echo.

于 2013-05-30T14:48:03.070 回答