shell 如何将空格替换成;

2024-12-12 18:34:12
推荐回答(2个)
回答1:

echo "$string"|sed "s/ /;/g"

回答2:

sed "s/ /;/g"