This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Basic Download: | |
| youtube-dl URL | |
| # Download Playlist, put in folder, and index with order: | |
| youtube-dl -o '%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s' URL | |
| # Download to /$uploader/$date/$title.$ext: | |
| youtube-dl -o '%(uploader)s/%(date)s/%(title)s.%(ext)s' URL | |
| # Download playlist starting from certain video: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pi@raspberrypi ~ $ cat /etc/network/interfaces | |
| auto lo | |
| iface lo inet loopback | |
| iface eth0 inet dhcp | |
| allow-hotplug wlan0 | |
| iface wlan0 inet static | |
| address 10.0.0.1 | |
| netmask 255.0.0.0 |