Following require
STRING1
and STRING2
to be not empty and COUNTER < MAX
.
if [[ -n "$STRING1" && -n "$STRING2" && $COUNTER -lt $MAX ]];
then
...
fi
This post is a nice concise resource.
STRING1
and STRING2
to be not empty and COUNTER < MAX
.
if [[ -n "$STRING1" && -n "$STRING2" && $COUNTER -lt $MAX ]];
then
...
fi
sudo apt-get install libX11-dev libglu1-mesa-dev libxml2-dev libgeos-dev libproj-dev libgdal-dev
install.packages("devtools")
library(devtools)
install_github("ggplot2","hadley")
install_github("knitr","yihui")
apt-cache search [package name]
apt-cache show [package name]
find . -type "type" -exec chmod 755 {} \;
find . -type "type" -exec chown owner.group {} \;
find . -type "type" -exec "command" {} \;
(cd /workingdir; /bin/script.sh)
(cd /workingdir && /bin/script.sh)
(cd /workingdir && exec /bin/script.sh)