> Is this code snippet copyrightable? Here is the full script:
#!/bin/bash if [ -z "$1" ]; then echo "No link supplied as argument" exit fi # [i] http://funbutlearn.com/2013/02/direct-download-link-to-your-google.htmlecho $1 | sed -r -e 's/(https:\/\/drive\.google\.com\/)file\/d\/([^/]+)\/view/echo "\1uc?id=\2\&e=download"/ge'
