shell--字符串拼接
Posted techPark
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell--字符串拼接相关的知识,希望对你有一定的参考价值。
#!/bin/bash file_name=\'./test\' text=\'(\' for s in `cat $file_name`;do text=$text\'"\'$s\'",\' done text=${text%?}\')\' echo $text
以上是关于shell--字符串拼接的主要内容,如果未能解决你的问题,请参考以下文章