Shell Script To Concatenate Two String Given as Input including its length
Write a shell program to concatenate to two String given as input and display the resultant string along with its string length. ... Why doesn’t this work????? #!/bin/sh echo “Enter first string:” read s1 echo “Enter second string:” read s2 s3=$s1$s2 len=
bash.cyberciti.biz |