Welcome to mirror list, hosted at ThFree Co, Russian Federation.

calc.sh « sample-commands - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73c5148671388f7bf9d5dc34388bfb8dd62c3f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash

CALCULATOR=$(which "bc")
if ! [ -x "$CALCULATOR" ]; then
  echo "Basic calculator package (bc - https://www.gnu.org/software/bc/) not found"
  exit 1
fi

while test $# -gt 0; do
  case "$1" in
    --help)
      echo "/calc - A basic calculator for Nextcloud Talk based on gnu BC"
      echo "See the official documentation for more information:"
      echo "https://www.gnu.org/software/bc/manual/html_mono/bc.html"
      echo " "
      echo "Simple equations: /calc 3 + 4 * 5"
      echo "Complex equations: /calc sin(3) + 3^3 * sqrt(5)"
      exit 0
      ;;
    *)
      break
      ;;
 esac
done

set -f
echo "$@ ="
echo $(echo "$@" | bc)