How do I join two strings under BASH? I have two strings stored in two different variables (_p=/delta and _u=aqua) and how do I join this and assign it to another variable in bash?
You can use parameter substitution as follows:
_p="/delta" _u="aqua" ### join two $vars ### out="${_p}${_u}" echo "${_p}${_u}" echo "${_p} and ${_u}" echo "${_p}/${_u}" echo "Output: $out"
Another example:
#!/bin/bash _domain="${1:-example.com}" _root="/chroot" _path="${_root}/${_domain}" echo "Host: ${HOSTNAME}@$(date) by $USER" echo echo "Setting Apache for ${_domain} @ ${_path}...." # setupJail "${_domain}" "${_path}"
Sample outouts:
./setup.httpd nixcraft.net.in Host: www34.nixcraft.com@Fri Nov 19 01:44:03 IST 2010 by root Setting Apache for nixcraft.net.in @ /chroot/nixcraft.net.in...
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 2 comments… read them below or add one }
Assigned the variables in a quoted string, you can include or not include spaces, commas or anything else as you like.
a=”part one”
b=”part two”
c=”$a, $b”
echo “$c”
part one, part two
http://tldp.org/LDP/abs/html/bashver3.html – for more info check it out
The += operator is now permitted in in places where previously only the = assignment operator was recognized.
a=1
echo $a # 1
a+=5 # Won’t work under versions of Bash earlier than 3.1.
echo $a # 15
a+=Hello
echo $a # 15Hello