3 shell script tagged "expr"
- Shell Script To Concatenate Two String Given as Input including its length
- Shell script to monitor services such as web/http, ssh, mail server
- Bash shell script to reverse text file contain using Shell array
Write a shell program to concatenate to two String given as input and display the resultant string along with its string length.
#!/bin/bash
# Shell script to monitor running services such as web/http, ssh, mail etc.
# If service fails it will send an Email to ADMIN user
# ————————————————————————-
# Copyright (c) 2006 nixCraft project <http://www.cyberciti.biz/fb/>
# This script is licensed under GNU GPL version 2.0 or above
# ————————————————————————-
# This script is part of nixCraft shell script collection (NSSC)
# Visit http://bash.cyberciti.biz/ [...]
This script also demonstrate how to use arrays under bash shell script.
#!/bin/bash
# Bash shell script to reverse text file contain i.e. concatenate files and
# print on the standard output in reverse. This script also demonstrate how
# to use arrays under bash shell script.
# ————————————————————————-
# Copyright (c) 2005 nixCraft project <http://cyberciti.biz/fb/>
# This script is licensed under [...]
Viewing 1-3 of 3 shell scripts. ( see all popular tags )

