Skip to content

Instantly share code, notes, and snippets.

@baku89
Last active March 21, 2016 15:21
Show Gist options
  • Select an option

  • Save baku89/c5ee330c07e79a1ab45a to your computer and use it in GitHub Desktop.

Select an option

Save baku89/c5ee330c07e79a1ab45a to your computer and use it in GitHub Desktop.
cdw
cdw() {
cd ${WORKDIR}
if [ $# != 0 ]; then
cd ${WORKDIR}
projDir=$(ls | grep ${1})
if [ -d "$projDir" ]; then
cd ${projDir}
else
echo "\"${1}\" does not exists \n"
ls
fi
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment