If var is defined AND NOT EMPTY, use var, otherwise set a default variable under Bash. For e.g. my script needs a parameter for output variable. It can be text or html. I set it as follows in my script
output=$1 # either text or html
However, sometime user forget to pass the parameter to my shell script and my enter logic fails. So how do I set default value to text, if no parameter passed?
How do I check if file is empty or not using bash or ksh shell script under UNIX / Linux / OS X / BSD operating systems?
How do I skip bash for loop if certain condition is satisfied under UNIX / Linux / BSD / OS X?
Q. How can you test if a file is writable under UNIX / Linux bash shell scripting?
Q. How do I use bash for loop under Linux operating systems?
How do I check if a file called /tmp/foo.txt exists or not using a shell script under Linux operating systems?