I am trying to concatenate two variables in a csh script
Here is part of the script
#!/bin/csh -f
set encname = _11111k_1920x1080_x264_5200_quicktime_128.mp4
set lowerisrc = `echo $isrc | tr "[:upper:]" "[:lower:]"`
echo "$lowerisrc$encname"
This outputs:
_11111k_1920x1080_x264_5200_quicktime_128.mp4
The lowerisrc variable should be a value for example "ggttgttgg"
It seems as if the lowerisrc variable is not recognized as a string using the lower function
How do I get the following result as the output?
ggttgttgg_11111k_1920x1080_x264_5200_quicktime_128.mp4