我有一个配置文本文件,我想解析成一个脚本。知道我是怎么做的吗?
配置;
name = joe
age = 38
location = oxford
例如,我会向用户提出问题;
Would you like to get the user details? [Y/N]:
然后在用户说“是”后,它会将此配置解析为我建立的命令。
答案 0 :(得分:-1)
我建议您使用cut命令,这是手册:https://linux.die.net/man/1/cut
以下是您的案例示例:
cut -d'=' -f1 /path/file
cut -d'=' -f2 /path/file