Lunch rand: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
"""In preparation""" | """In preparation""" | ||
This script will randomly decide where you should go for lunch: | This script will randomly decide where you should go for lunch: | ||
Revision as of 12:59, 31 January 2020
"""In preparation"""
This script will randomly decide where you should go for lunch:
- copy following text to blank file named ""lunch_rand.sh""
#! /bin/bash
echo Here are the choices where you can go for lunch: echo echo "1) URV 2) ICIQ 3) Chinos (across the street) 4) Burger place 5) Pizza up the street 6) delta" > e.tmp cat e.tmp echo echo Your faith has been decided: odlucivalac=$((RANDOM % 6)) #echo $odlucivalac head -$odlucivalac ./e.tmp | tail -1
- make ""lunch_rand.sh"" executable:
chmod +x curls.py
- to run script type:
./lunch_rand.sh
- now you can go for lunch