Skip to content

Instantly share code, notes, and snippets.

@vseow
vseow / wget.sh
Created November 10, 2015 23:17
Download from multiple links/URLs in a text file with wget
wget --content-disposition -i list-of-links.txt
# Make sure your URLs are in the following format: http://www.example.com
@vseow
vseow / apm-uninstall.sh
Created November 10, 2015 23:19
Uninstall multiple packages from Atom editor in the command line
apm list -b | grep [KEYWORD] | xargs apm uninstall