File: hplip-gui.bug-script

package info (click to toggle)
hplip 3.21.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 182,104 kB
  • sloc: python: 83,189; ansic: 70,905; cpp: 63,443; sh: 11,445; perl: 4,397; makefile: 934
file content (10 lines) | stat: -rwxr-xr-x 289 bytes parent folder | download | duplicates (28)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e
echo
while true; do
    read -p "Do you wish to include your system configuration with this report (hp-check -r)? " yn
    case $yn in
        [Yy]* ) /usr/bin/hp-check -t -r >&3 2>&3; break;;
        [Nn]* ) exit;;
        * ) echo "Please answer yes or no.";;
    esac
done