简单的任务可能买我似乎无法在http://faculty.plattsburgh.edu/jan.plaza/computing/help/commands.html上找到命令
基本上我有一个我知道的文本字符串,并在我的 bash 文件中设置了一个变量。
然后我需要将此文本保存为所需目录中名为 Foo.conf 的文件。
这是我到目前为止所拥有的:
#!/bin/bash
stringForFile='port=6000 Username=USER Password=PASSWORD'
mkdir '~/.Foo'
# need to save file as Foo.conf to .Foo directory
提前谢谢了