Skip to content

Instantly share code, notes, and snippets.

@ravelll
Created September 2, 2015 14:08
Show Gist options
  • Select an option

  • Save ravelll/c0849058eb7e6b8b231c to your computer and use it in GitHub Desktop.

Select an option

Save ravelll/c0849058eb7e6b8b231c to your computer and use it in GitHub Desktop.
#!/bin/sh
cd ~
if [ -e .cd ]; then
directories=$(cat .cd)
touch .cd_cleaned
for directory in $directories
do
if [ -e $directory ]; then
echo $directory >> .cd_cleaned
fi
done
if [ -s .cd_cleaned ]; then
mv ~/.cd ~/.ce
mv ~/.cd_cleaned ~/.cd
fi
else
echo '.cd file not found'
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment