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
| #!/usr/bin/env bash | |
| # | |
| ## DESCRIPTION: Transcode with FFmpeg all (mkv, mp4) media files in specified directory, | |
| ## overwriting the original source files. | |
| ## | |
| ## AUTHOR: Travis Runyard | |
| ## Revised: 04/18/2020 | |
| ## URL: https://sysinfo.io/ffmpeg-batch-transcode-audio/ | |
| # Exit on first non-zero exit code |
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 | |
| #sysinfo.io | |
| #change paths below to suit your needs | |
| dockerdir_new='/docker/var/' | |
| dockerdir_old='/var/lib/docker/' | |
| set -e | |
| dockerdir_new2=$(echo "$dockerdir_new" | sed 's/\//\\\//g') | |
| systemctl stop docker | |
| mkdir -p $dockerdir_new |
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
| REM Windows Search | |
| sc config WSearch start=disabled | |
| REM SSDP Discovery | |
| sc config SSDPSRV start=disabled | |
| REM Geolocation Service | |
| sc config lfsvc start=disabled | |
| REM ActiveX Installer | |
| sc config AXInstSV start=disabled | |
| REM AllJoyn Router Service | |
| sc config AJRouter start=disabled |
NewerOlder