# HG changeset patch # User Pascal Bellard # Date 1571566272 -7200 # Node ID a3dd7551a6cfaf5b61848aee83dacb566811ad5f # Parent dc2507062df39515f2ffb27229079b555863d68b Remove cat process diff -r dc2507062df3 -r a3dd7551a6cf rootfs/usr/bin/sudo --- a/rootfs/usr/bin/sudo Tue Feb 26 08:22:10 2019 +0100 +++ b/rootfs/usr/bin/sudo Sun Oct 20 12:11:12 2019 +0200 @@ -15,7 +15,7 @@ *) if [ -s "$conf" ]; then # Saved root password - cat "$conf" | su -c "cd $pwd; $cmd" + su -c "cd $pwd; $cmd" < "$conf" else su -c "cd $pwd; $cmd" fi ;;