Indexer | Membership Status | API URL | Software | API Hits/Day | NZB Grabs/Day | Retention | Account Duration | Counter Reset | Counter Reset |
---|---|---|---|---|---|---|---|---|---|
NZB.cat | Free | https://nzb.cat | nZEDb | 500 | 50 | 60 Days | |||
NZB.cat | VIP | https://nzb.cat | nZEDb | 5,000 | 1,000 | Lifetime | |||
Oznzb.com | Freeloader | https://api.oznzb.com | Newsnab+ | 5 | 5 | Rolling Counter | Rolling Co |
This file contains 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
# http://stackoverflow.com/questions/5735666/execute-bash-script-from-url | |
bash <(curl -s http://mywebsite.com/myscript.txt) | |
# http://stackoverflow.com/questions/4642915/passing-parameters-to-bash-when-executing-a-script-fetched-by-curl | |
curl http://foo.com/script.sh | bash -s arg1 arg2 |
This file contains 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
Download Google Drive files with WGET | |
Example Google Drive download link: | |
https://docs.google.com/open?id=[ID] | |
To download the file with WGET you need to use this link: | |
https://googledrive.com/host/[ID] | |
Example WGET command: |
- Use
curl
to get the JSON response for the latest release - Use
grep
to find the line containing file URL - Use
cut
andtr
to extract the URL - Use
wget
to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
This file contains 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
for s in /tmp/screens/S-admin/*; do screen -r $(basename $s); done |
This file contains 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
sudo apt install gem ruby ruby-dev | |
sudo gem install jekyll bundler jekyll-redirect-from | |
cd ~/documents/SABnzbd\ wiki/sabnzbd.github.io/ | |
jekyll serve |
This file contains 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
$HOME/.config/mimeapps.list | |
[Added Associations] | |
inode/directory=org.kde.dolphin.desktop;kde4-kfind.desktop;baobab.desktop;k4dirstat.desktop; |
This file contains 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
sudo apt install software-properties-common dirmngr gnupg-agent | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys AD5F235DF639B041 | |
echo 'deb http://ppa.launchpad.net/alessandro-strada/ppa/ubuntu xenial main' | sudo tee /etc/apt/sources.list.d/alessandro-strada-ubuntu-ppa.list >/dev/null | |
sudo apt update | |
sudo apt install google-drive-ocamlfuse |
This file contains 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
packages=($(grep '^\[.*\]$' /etc/config/qpkg.conf | sed 's|[][]||g')) | |
for package in ${packages[*]}; do setcfg $package Enable FALSE -f /etc/config/qpkg.conf; done |
This file contains 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
#!/bin/bash | |
err_report() { | |
echo "error in inner script: $(caller):$1" | |
} | |
trap 'err_report $LINENO' ERR | |
echo "INNER SCRIPT" |
OlderNewer