Step-by-step Vim Customization for Ubuntu 16.04 for Python user.
Use the command below to remove vim:
sudo apt-get remove vim vim-runtime
| # This script is used to download images given a list of urls | |
| imgdir=$1 | |
| urllist=$2 | |
| mkdir $imgdir | |
| while read p; | |
| do | |
| wget $p -P $imgdir | |
| done < $urllist |