anduin / Autoseed.sh
0 j'aimes
0 forks
3 fichiers
Dernière activité
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 j'aimes
0 forks
2 fichiers
Dernière activité
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" |
Plus récent
Plus ancien