Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
executable file 6 lines (6 sloc) 150 Bytes
#!/bin/bash
# Usage:
# ./ipfs_pin_remote_hashes.sh http://some.url/hashes/list.txt
while read -r h; do
ipfs pin add $h
done <<< "$(wget $1 -q -O -)"