标签: string shell ubuntu
我想在bash脚本(Ubuntu)中设置一个命令,我可以将两个字符串连接在一起并打印出来。例如:
Users/Desktop/File_
和
20_A
我想要一个允许我连接它们的命令,例如:
Users/Desktop/File_20_A
在R中,我使用命令paste0。 bash中是否也存在这种情况?
paste0
答案 0 :(得分:0)
您要查找的命令名为echo。例如,如果您有两个变量A和B:
echo
echo "$A$B"