diff options
author | Juergen Daubert <jue@jue.li> | 2020-10-15 11:07:11 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2020-10-15 11:07:11 +0200 |
commit | b3fa09e922d4d24d7370165d9f73109a2f33b95d (patch) | |
tree | 36a8b6e70837c2ca0d1f9dae1d9f1f82ae481555 | |
parent | e17b9e028d800ffd0203086a266d6baf3876b2c3 (diff) | |
download | prt-utils-b3fa09e922d4d24d7370165d9f73109a2f33b95d.tar.gz prt-utils-b3fa09e922d4d24d7370165d9f73109a2f33b95d.tar.xz |
prtwash: replace .md5sum with .signature
-rwxr-xr-x | prtwash | 6 | ||||
-rw-r--r-- | prtwash.1 | 8 |
2 files changed, 7 insertions, 7 deletions
@@ -23,7 +23,7 @@ # execution would be useful. # -VERSION="0.7" +VERSION="0.8" CONFIGFILE="/etc/prt-get.conf" usage() { @@ -157,7 +157,7 @@ wash() { if [ ! "$removeaddonfiles" = 1 ]; then # keep additional and dot files - tosave=( "${tosave[@]}" ".md5sum" ) + tosave=( "${tosave[@]}" ".signature" ) tosave=( "${tosave[@]}" ".32bit" ) tosave=( "${tosave[@]}" ".footprint" ) tosave=( "${tosave[@]}" ".nostrip" ) @@ -187,7 +187,7 @@ wash() { done fi - for f in "$1"/{*,.footprint,.md5sum,.32bit}; do + for f in "$1"/{*,.footprint,.signature,.32bit}; do if ! keep $f; then remove $f fi @@ -1,5 +1,5 @@ ." Text automatically generated by txt2man-1.4.7 -.TH prtwash 1 "September 18, 2009" "prtwash 0.7" "" +.TH prtwash 1 "October 15, 2020" "prtwash 0.8" "" .SH NAME \fBprtwash \fP- a script to clean the port dirs in CRUX Linux. \fB @@ -27,7 +27,7 @@ The sources (as stated in the Pkgfile) .IP \(bu 3 The built package .IP \(bu 3 -The .md5sum, .footprint, .32bit and .nostrip files +The .signature, .footprint, .32bit and .nostrip files .IP \(bu 3 Additional files: README, FAQ, pre-install, post-install .PP @@ -47,7 +47,7 @@ also removes the sources .TP .B -d -also remove the additional files: .md5sum, .footprint, .32bit +also remove the additional files: .signature, .footprint, .32bit README, FAQ, pre/post-install .TP .B @@ -83,7 +83,7 @@ and built packages from the entire port tree .B \fBprtwash\fP -a -p -s -d same as tha above, but also -removes .md5sum, .footprint, README, etc +removes .signature, .footprint, README, etc .TP .B \fBprtwash\fP -p -s /usr/ports/contrib/sitecopy |