7 lines
154 B
Bash
Executable File
7 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# iterating line-by-line over the input file
|
|
numOfPeople=`cat $1 | grep 'Poland' | wc -l`
|
|
|
|
echo "Num. of people from Poland is $numOfPeople"
|