https://docs.ansible.com/ansible/latest/user_guide/playbooks_best_practices.html#alternative-directory-layout
├── group_vars
│ └── all
│ └── vars.yml
├── inventories
│ ├── production
│ │ ├── group_vars
| /run/user/$(id -u)/gvfs/smb-share:server=${server_ip},share=${share_name}/ |
| --- epub.css 2020-03-12 14:34:26.000000000 +1100 | |
| +++ epub-new.css 2020-04-09 20:26:32.000000000 +1000 | |
| @@ -142,7 +142,6 @@ | |
| h1, div.toc-title, h2, h3, h4, h5 { | |
| -webkit-hyphens: none; | |
| hyphens: none; | |
| - adobe-hyphenate: none; | |
| font-weight: bold; | |
| text-align: left; | |
| page-break-after: avoid !important; |
| #!/bin/bash | |
| export python=/usr/bin/python | |
| NAME="Living.With.Hitler" | |
| SEASON="01" | |
| EPISODE="03" | |
| RLS=CZECH.720p.WEB.H264-TUZEX | |
| EXTENSION=\%\(ext\)s | |
| URL=https://www.ceskatelevize.cz/porady/13994065402-zivot-s-hitlerem/221382572220003/ |
| # Handler: lambda.main | |
| # Makes an API call to Red Hat Ansible Tower to launch an Ansible job | |
| from botocore.vendored import requests # This dependency was removed from Botocore and will be removed from Lambda after 2020/03/31 | |
| import urllib3 | |
| import json | |
| def main(event,context): | |
| """ | |
| AWS Lambda uses 2 parameters (event, context) to provide data to the handler, but we don't really need them for this | |
| """ |
| # RAR 5.80 b4 Copyright (c) 1993-2019 Alexander Roshal [5 Dec 2019] | |
| rar a -m0 -ma4 -vn -v50000000b Rambo.2008.720p.BDRip.XviD-SHiRK.rar Rambo.2008.720p.BDRip.XviD-SHiRK.avi |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6599-cart&do=buyItem" | |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6600-cart&do=buyItem" | |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6601-cart&do=buyItem" | |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6603-cart&do=buyItem" | |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6604-cart&do=buyItem" | |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6607-cart&do=buyItem" | |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6608-cart&do=buyItem" | |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6611-cart&do=buyItem" | |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6612-cart&do=buyItem" | |
| "https://www.palmknihy.cz/nakladatel/130313/84?book_id=6613-cart&do=buyItem" |
├── group_vars
│ └── all
│ └── vars.yml
├── inventories
│ ├── production
│ │ ├── group_vars
| #!/bin/bash | |
| # Checks if all the subfolders contain *.SFV file. Reports the ones which don't have it. | |
| for x in *; | |
| do | |
| ls ${x}/*.sfv >/dev/null | |
| RESULT=$? | |
| if [ $RESULT -eq 1 ]; then | |
| echo 'NO SFV IN ${x}' |
| #!/bin/bash | |
| # Generate a Markdown change log of pull requests from commits between two tags | |
| # Author: Russell Heimlich | |
| # Original URL: https://gist.github.com/kingkool68/09a201a35c83e43af08fcbacee5c315a | |
| # Modified for Atlassian Stash and older Git version by author: Lucian Maly <lucian@redhat.com> | |
| # URL: https://gist.github.com/luckylittle/7e7192743514d08989a6fc0cdbd93e61 | |
| # HOW TO USE | |
| # Copy this script to a directory under Git version control | |
| # Make the script executable i.e. chmod +x changelog.sh |