1 articles tagged "default values"
- BASH shell scripting tip: Set default values for variable
A shell variable may be assigned to by a statement using following syntax:
var=value
If value is not given, the variable is assigned the null string. In shell program it is quite useful to provide default value for variables. For example consider rsync.sh script:
#!/bin/bash
RSRC=$1
LOCAL=$2
rsync -avz -e ’ssh ‘ user@myserver:$RSRC $LOCALThis script can be run as follows:
$ ./rsync.sh [...]
Viewing 1-1 of 1 posts. ( see all popular tags )


Recent Comments
Today ~ 177 Comments
01/02/2008 10:46 pm ~ 1 Comment
Yesterday ~ 4 Comments
08/24/2006 01:56 pm ~ 11 Comments
Yesterday ~ 4 Comments