anduin / Autoseed.sh
0 лайк(-ов)
0 форк(-ов)
3 файл(-ов)
Последняя активность
Seed all torrent files under current folder.
1 | |
2 | #!/bin/bash |
3 | |
4 | # Find all .iso files and their corresponding .sha256 files, including subdirectories |
5 | find . -type f -name "*.iso" | while read -r iso_file; do |
6 | # Get the corresponding .sha256 file in the same directory |
7 | sha256_file="${iso_file%.iso}.sha256" |
8 | |
9 | # Check if the .sha256 file exists |
10 | if [[ -f "$sha256_file" ]]; then |
anduin / compare_manifest
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность
Compare two manifest files and list packages present in the first but not the second.
1 | # 保存脚本为 compare_manifests.py,并赋可执行权限 |
2 | chmod +x compare_manifests.py |
3 | |
4 | # 运行脚本,依次传入 Ubuntu、Zorin、Anduin 三个 manifest 文件路径 |
5 | ./compare_manifests.py \ |
6 | "/media/anduin/Ubuntu 25.04 amd64/casper/filesystem.manifest" \ |
7 | "/media/anduin/Zorin OS 17.3 Core 64bit/casper/filesystem.manifest" \ |
8 | "/media/anduin/anduinos/casper/filesystem.manifest" |
anduin / Convert cb files to EP cached fle.
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.IO; |
4 | using System.IO.Compression; |
5 | using System.Text.Json; |
6 | |
7 | namespace JsonToGzip |
8 | { |
9 | class Program |
10 | { |
Новее
Позже