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 | |
| # | |
| # Merge tool for rpmnew file | |
| # | |
| # @author Jun Futagawa | |
| RPMNEW_FILE="$1" | |
| DEFAULT_FILE="$2" | |
| if [[ -z "${RPMNEW_FILE}" ]]; then |
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 | |
| # | |
| # Select and export SSH_AUTH_SOCK | |
| # | |
| # @author Jun Futagawa | |
| LIST=$(ls -t /tmp/ | grep ssh-) | |
| SUFFIX=" (latest)" | |
| declare -a SSH_AUTH_SOCK_ARRAY=() |
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
| # Usage: scoop install-vector <app> [options] | |
| # Summary: Install apps | |
| # Help: e.g. The usual way to install an app (uses your local 'buckets'): | |
| # scoop install git | |
| # | |
| # To install an app from a manifest at a URL: | |
| # scoop install https://raw.githubusercontent.com/ScoopInstaller/Main/master/bucket/runat.json | |
| # | |
| # To install an app from a manifest on your computer | |
| # scoop install \path\to\app.json |
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
| { | |
| "manifest_version": 2, | |
| "name": "Nextcloud for Filelink", | |
| "description": "Nextcloud provider for Thunderbird Filelink", | |
| "version": "1.8", | |
| "author": "Olivier Paroz", | |
| "homepage_url": "https://github.com/nextcloud/nextcloud-filelink", | |
| "legacy": { | |
| "type": "xul", | |
| "options" : { |
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
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "copyFormatting": "none", | |
| "copyOnSelect": true, | |
| "defaultProfile": "{5d7ce2e3-c26e-47a1-b9e6-fe449aaf75d0}", | |
| "initialCols": 150, | |
| "initialRows": 40, | |
| // Add custom keybindings to this array. | |
| // To unbind a key combination from your defaults.json, set the command to "unbound". | |
| // To learn more about keybindings, visit https://aka.ms/terminal-keybindings |
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
| diff --git a/admin/tool/dbtransfer/cli/migrate.php b/admin/tool/dbtransfer/cli/migrate.php | |
| index 0d32e2ae..dea01740 100644 | |
| --- a/admin/tool/dbtransfer/cli/migrate.php | |
| +++ b/admin/tool/dbtransfer/cli/migrate.php | |
| @@ -49,6 +49,10 @@ Options: | |
| --dbport=NUMBER Database port. | |
| --prefix=STRING Table prefix for above database tables. | |
| --dbsocket=PATH Use database sockets. Available for some databases only. | |
| +--dbcollation=COLLATION Use database collation for mysql/mariadb | |
| +-r, --retry=BOOLEAN Retry to copy tables. If the number of records is the |
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 | |
| # | |
| # scoop list for migration | |
| APP_FAILED="" | |
| APP_UNKOWN="" | |
| APP_GLOBAL="" | |
| APP_USER="" | |
| IFS=' |
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
| @echo off | |
| :: | |
| :: フルバックアップ | |
| :: | |
| :: 1. robocopy バックアップ | |
| :: 2. バックアップ元のすべてのファイルのアーカイブ属性を Off に設定 | |
| :: 3. バックアップ先ディレクトリの隠し属性削除 | |
| :: 注意: 1. 実行後、2. の実行までに更新されたファイルは、 | |
| :: バックアップから漏れますが許容することにします。 | |
| :: |
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 | |
| # | |
| # AWS Security Group dump | |
| # | |
| # Supported name resolution targets: | |
| # | |
| # - EC2 | |
| # - RDS | |
| # - RDS Procy | |
| # - ElastiCache |
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 | |
| # | |
| # Monit alert to Slack Webhook | |
| # | |
| # Configuration: | |
| # | |
| # - touch /etc/monit-slack-notify.conf | |
| # - chmod 600 /etc/monit-slack-notify.conf | |
| # - vi /etc/monit-slack-notify.conf | |
| # |