I would like to set a command in a bash script (Ubuntu) where I can concatenate two strings together and print them. For example:
Users/Desktop/File_
and
20_A
I would like a command that allows me to concatenate them, such as:
Users/Desktop/File_20_A
In R to do that I use the command paste0
. Does that exist also in bash?