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--字符串拼接的主要内容,如果未能解决你的问题,请参考以下文章

shell 字符串拼接

Linux - Shell - 字符串拼接

Shell字符串拼接(连接合并)

shell 字符串拼接

shell--字符串拼接

Linux shell字符串截取与拼接