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
| #!/bin/bash | |
| TYPE='2' | |
| VERBOSE='' | |
| STAMP=$(date +"%Y%m%d%H%M%S") | |
| VAULTWARDEN=/home/arnehelseth/docker/vaultwarden | |
| STORE=/home/arnehelseth/backups/vaultwarden | |
| FPATH=${STORE:1} | |
| BPATH='' |
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
| #!/bin/bash | |
| # Script to rename certain files from a #### - Title.ext format to | |
| # the more common S##E## - Title.ext scheme. | |
| mv_cmd=mv | |
| function display_help { | |
| echo "Usage: $0 [options]" | |
| echo " -i, --infile Input file" |
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
| """ | |
| Copyright 2019 Jason Hu <awaregit at gmail.com> | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |