Please see this


Contents

- INDEX
- Unix Scripts Index
- HP-UX
- Solaris
- Linux Index
- General Unix
- Unix Networking
- Other Unix types
- Unix databases

Associated Information

- none

Concatenating variables together in a script

e.g. script A B C

#!/usr/bin/sh> LocVar=" " while [ $# -gt 0 ] do LocVar=${LocVar}$1 shift done

or

var=$*
echo $var | awk '{print $1$2$3 }'


Copyright 2000 Intronet Computers Ltd
Email: Intronet Computers for enquiries