This tool can be described as a tiny, dirty C command that looks for coreutils basic commands (cp, mv, dd, tar, gzip/gunzip, cat, etc.) currently running on your system and displays the percentage of copied data. It can also show estimated time and throughput, and provides a "top-like" mode (monitoring). WWW: https://github.com/Xfennec/progress
12 lines
461 B
Plaintext
12 lines
461 B
Plaintext
--- Makefile.orig 2025-09-22 08:19:02 UTC
|
|
+++ Makefile
|
|
@@ -40,7 +40,7 @@ install : $(OBJ)
|
|
@install -pm0644 $(OBJ).1 $(DESTDIR)$(MANDIR)/ || \
|
|
echo "Failed. Try "make PREFIX=~ install" ?"
|
|
@echo "Installing zsh completion to $(DESTDIR)$(ZSHDIR) ..."
|
|
- @install -Dpm0644 _$(OBJ) -t $(DESTDIR)$(ZSHDIR)/ || \
|
|
+ @install -Dpm0644 _$(OBJ) $(DESTDIR)$(ZSHDIR)/ || \
|
|
echo "Failed. Try "make PREFIX=~ install" ?"
|
|
uninstall :
|
|
@rm -f $(DESTDIR)$(BINDIR)/$(OBJ)
|