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/sh | |
| set -e | |
| if [ $EUID -ne 0 ] then | |
| echo >&2 'run as root' | |
| exit 1 | |
| fi | |
| mount -o remount,rw /system |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\qbittorrent.exe] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\qbittorrent.exe\PerfOptions] | |
| "CpuPriorityClass"=dword:00000001 | |
| "IoPriority"=dword:00000000 | |
| "PagePriority"=dword:00000001 |
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
| #include <filesystem> | |
| #include <iostream> | |
| namespace fs = std::filesystem; | |
| namespace { | |
| void PrintUsage(const wchar_t *exePath) { | |
| std::wcout << L"usage: " << exePath | |
| << L"watchlist_dir source_dir0 [source_dir1 ...]"; |
NewerOlder