「APT」:修訂間差異
跳至導覽
跳至搜尋
第17行: | 第17行: | ||
* {{Official|https://wiki.debian.org/AptCLI}} {{en}} | * {{Official|https://wiki.debian.org/AptCLI}} {{en}} | ||
[[Category:軟體]] |
於 2024年12月17日 (二) 10:28 的修訂
APT是一套套件管理系統,源自Debian。
工具
把Legacy Format轉成DEB822格式,這邊要注意只支援GNU Awk:
gawk '{if ($1 ~ /^deb/) {printf("Enabled: yes\nTypes: %s\nURIs: %s\nSuites: %s\nComponents: %s\n%s", $1, $(NF-2), $(NF-1), $NF, signedby); if (match($0, /arch=([^ \]]*)/, a)) printf("Architectures: %s\n", a[1]); if (match($0, /signed-by=([^ \]]*)/, a)) printf("Signed-by: %s\n", a[1])}}'
相關連結
外部連結
- 官方網站 (英文)