Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.17 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. tempoerlaubt=`grep "$1 $2" DB | cut -d ' ' -f 3`
  4. tempo=`cat tacho`
  5.  
  6. if [ $tempoerlaubt -ge $tempo ]
  7. then
  8.  echo "schneller"
  9. else
  10.  echo "langsamer"
  11. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement