bash命令用于创建自定义命名文件

时间:2013-07-21 15:58:29

标签: linux bash

简单的任务可能买了我似乎找不到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 

非常感谢提前

1 个答案:

答案 0 :(得分:1)

为什么不在mkdir命令之后使用echo $stringForFile > ~/.Foo/Foo.conf