The Tech Edvocate

Top Menu

  • Advertisement
  • Apps
  • Home Page
  • Home Page Five (No Sidebar)
  • Home Page Four
  • Home Page Three
  • Home Page Two
  • Home Tech2
  • Icons [No Sidebar]
  • Left Sidbear Page
  • Lynch Educational Consulting
  • My Account
  • My Speaking Page
  • Newsletter Sign Up Confirmation
  • Newsletter Unsubscription
  • Our Brands
  • Page Example
  • Privacy Policy
  • Protected Content
  • Register
  • Request a Product Review
  • Shop
  • Shortcodes Examples
  • Signup
  • Start Here
    • Governance
    • Careers
    • Contact Us
  • Terms and Conditions
  • The Edvocate
  • The Tech Edvocate Product Guide
  • Topics
  • Write For Us
  • Advertise

Main Menu

  • Start Here
    • Our Brands
    • Governance
      • Lynch Educational Consulting, LLC.
      • Dr. Lynch’s Personal Website
      • Careers
    • Write For Us
    • The Tech Edvocate Product Guide
    • Contact Us
    • Books
    • Edupedia
    • Post a Job
    • The Edvocate Podcast
    • Terms and Conditions
    • Privacy Policy
  • Topics
    • Assistive Technology
    • Child Development Tech
    • Early Childhood & K-12 EdTech
    • EdTech Futures
    • EdTech News
    • EdTech Policy & Reform
    • EdTech Startups & Businesses
    • Higher Education EdTech
    • Online Learning & eLearning
    • Parent & Family Tech
    • Personalized Learning
    • Product Reviews
  • Advertise
  • Tech Edvocate Awards
  • The Edvocate
  • Pedagogue
  • School Ratings

logo

The Tech Edvocate

  • Start Here
    • Our Brands
    • Governance
      • Lynch Educational Consulting, LLC.
      • Dr. Lynch’s Personal Website
        • My Speaking Page
      • Careers
    • Write For Us
    • The Tech Edvocate Product Guide
    • Contact Us
    • Books
    • Edupedia
    • Post a Job
    • The Edvocate Podcast
    • Terms and Conditions
    • Privacy Policy
  • Topics
    • Assistive Technology
    • Child Development Tech
    • Early Childhood & K-12 EdTech
    • EdTech Futures
    • EdTech News
    • EdTech Policy & Reform
    • EdTech Startups & Businesses
    • Higher Education EdTech
    • Online Learning & eLearning
    • Parent & Family Tech
    • Personalized Learning
    • Product Reviews
  • Advertise
  • Tech Edvocate Awards
  • The Edvocate
  • Pedagogue
  • School Ratings
  • Viaim Opennote Review: The AI Note-Taker That Disappears Into Your Daily Routine

  • A Visitors Guide to Long Beach (CA), United States

  • A Visitor’s Guide to Fresno (CA), United States

  • A Visitors Guide to New Orleans (LA), United States

  • A Visitors Guide to Sacramento (CA), United States

  • A Visitors Guide to Lyon, France

  • JisuLife Ultra2 Portable Fan: A Powerful Multi-Function Cooling Solution

  • A Visitors Guide to Viña del Mar, Chile

  • A Visitors Guide to Århus, Denmark

  • A Visitors Guide to Bakersfield (CA), United States

Coding
Home›Coding›How to Use Bash to Concatenate Strings

How to Use Bash to Concatenate Strings

By Matthew Lynch
June 23, 2023
0
Spread the love

As a programmer, you may encounter situations where you need to combine or concatenate strings to generate a new string. Bash, the shell used in Unix and Linux operating systems, provides several ways to concatenate strings. In this article, we will explore different methods for concatenating strings with examples.

Method 1: Using the Concatenation Operator

The easiest way to concatenate strings in Bash is to use the plus (+) operator. To concatenate two strings, just append the plus operator between them. For example, let’s concatenate “Hello” and “world” strings in Bash:

“`

#!/bin/bash

str1=”Hello”

str2=”world”

result=$str1+$str2

echo $result

“`

Output:

“`

Hello+world

“`

As you can see, the output string includes the plus operator between the two strings. To obtain a concatenated string with the desired result, use quotes to surround both strings and remove the plus sign, like this:

“`

result=”$str1$str2″

“`

Output:

“`

Helloworld

“`

Now the two strings are concatenated, and the result is what we wanted.

Method 2: Using the Append Operator

Another way to concatenate strings in Bash is to use the append operator (+=). The append operator adds a string to an existing string variable. Here is an example:

“`

#!/bin/bash

str=”Hello”

str+=”world”

echo $str

“`

Output:

“`

Helloworld

“`

In the above example, we first set the value of the “str” variable to “Hello.” Then we used the append operator to add “world” to the end of the “str” variable. Finally, we printed the result using the echo command.

Method 3: Using the printf Command

The printf command in Bash allows you to format and print strings. You can also use the printf command to concatenate strings using the %s format specifier. Here is an example:

“`

#!/bin/bash

str1=”Hello”

str2=”world”

result=$(printf “%s%s” $str1 $str2)

echo $result

“`

Output:

“`

Helloworld

“`

In the above example, we used the printf command to combine the two strings with the %s format specifier, which is followed by the two string variables. The result is assigned to the “result” variable, which we printed using the echo command.

Method 4: Using Here Strings

The Here Strings feature in Bash allows you to pass a string to a command or function. You can use Here Strings to concatenate strings.

“`

#!/bin/bash

str1=”Hello”

str2=”world”

result=$(cat <<< “$str1$str2”)

echo $result

“`

Output:

“`

Helloworld

“`

In the above example, we concatenated the two strings using the Here Strings feature. The cat command reads its standard input and combines it into a single output string.

Previous Article

How to Get the Absolute Value of ...

Next Article

Best Windows 10 Themes for Every Desktop

Matthew Lynch

Related articles More from author

  • Coding

    Best Free HTML Editors for Windows for 2023

    June 6, 2023
    By Matthew Lynch
  • Coding

    Best Online Coding Courses

    June 8, 2023
    By Matthew Lynch
  • Best of the Best ListsCoding

    The Best Alternatives to Atom Text Editor

    June 5, 2023
    By Matthew Lynch
  • Coding

    Arrow Functions vs. Regular Functions in JavaScript

    June 12, 2023
    By Matthew Lynch
  • Coding

    Bash Variables Explained: A Simple Guide with Examples

    June 6, 2023
    By Matthew Lynch
  • CodingDigital & Mobile Technology

    What is a Web Developer?

    April 24, 2023
    By Matthew Lynch

Search

Login & Registration

  • Register
  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Newsletter

Signup for The Tech Edvocate Newsletter and have the latest in EdTech news and opinion delivered to your email address!

About Us

Since technology is not going anywhere and does more good than harm, adapting is the best course of action. That is where The Tech Edvocate comes in. We plan to cover the PreK-12 and Higher Education EdTech sectors and provide our readers with the latest news and opinion on the subject. From time to time, I will invite other voices to weigh in on important issues in EdTech. We hope to provide a well-rounded, multi-faceted look at the past, present, the future of EdTech in the US and internationally.

We started this journey back in June 2016, and we plan to continue it for many more years to come. I hope that you will join us in this discussion of the past, present and future of EdTech and lend your own insight to the issues that are discussed.

Newsletter

Signup for The Tech Edvocate Newsletter and have the latest in EdTech news and opinion delivered to your email address!

Contact Us

The Tech Edvocate
910 Goddin Street
Richmond, VA 23231
(601) 630-5238
[email protected]

Copyright © 2025 Matthew Lynch. All rights reserved.