简单的任务可能买了我似乎找不到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
非常感谢提前
答案 0 :(得分:1)
为什么不在mkdir命令之后使用echo $stringForFile > ~/.Foo/Foo.conf
?