Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fabulousduck
Created November 29, 2018 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabulousduck/e7c3a2605e6c6ea3bf0acc1d134cc093 to your computer and use it in GitHub Desktop.
Save fabulousduck/e7c3a2605e6c6ea3bf0acc1d134cc093 to your computer and use it in GitHub Desktop.
#!bin/bash
echo ryan
naam=ryan
echo $naam
echo "hello $naam"
wordcount=`cat gisteren.txt | wc -w`
echo $wordcount
if [[ $wordcount > 200 ]]; then
echo "thats a big file";
else
echo "thats a small file";
fi
for(( i = 0; i < 100; i++)); do
echo $i;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment