Skip to content

Instantly share code, notes, and snippets.

@SmashedFrenzy16
Created April 3, 2022 16:51
Show Gist options
  • Save SmashedFrenzy16/281611accf835ee31131e52e0d104cf0 to your computer and use it in GitHub Desktop.
Save SmashedFrenzy16/281611accf835ee31131e52e0d104cf0 to your computer and use it in GitHub Desktop.
A string concatenator made in Shell Script.
#!/bin/bash
clear
echo "enter 2 strings: "
read "str1"
read "str2"
str3=`echo $str1 $str2`
echo result : $str3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment