-
Notifications
You must be signed in to change notification settings - Fork 101
Open
Description
Debian Trixie uses coreutils 9.7, and the patch is for 9.5, so i prefer this way. For anything else use system cp (9.7), when call --progress-bar, use advanced cp (9.5).
cp() {
if [ "$1" = "-g" ]; then
shift
"$HOME/.local/bin/advcp" -g "$@"
else
command cp "$@"
fi
}
mv() {
if [ "$1" = "-g" ]; then
shift
"$HOME/.local/bin/advmv" -g "$@"
else
command mv "$@"
fi
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels