File: help

package info (click to toggle)
htop 3.4.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,716 kB
  • sloc: ansic: 32,719; makefile: 480; sh: 206
file content (9 lines) | stat: -rwxr-xr-x 344 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/bash

set -e

htop --help | grep -- "^htop"        && echo "Help (htop): OK"
htop --help | grep -F "GPL"          && echo "Help (GPL): OK"
htop --help | grep -F -- "--help"    && echo "Help (--help): OK"
htop --help | grep -F -- "--tree"    && echo "Help (--tree): OK"
htop --help | grep -F -- "--version" && echo "Help (--version): OK"