weather and road conditions http://www.road.is/ https://safetravel.is/conditions https://en.vedur.is/weather/forecasts/areas/ https://www.icelandair.com/blog/the-yule-lads/
- Nov 16, 17, 18 (Grimur hotel Reykyavik)
weather and road conditions http://www.road.is/ https://safetravel.is/conditions https://en.vedur.is/weather/forecasts/areas/ https://www.icelandair.com/blog/the-yule-lads/
| #!/bin/bash | |
| fileName=$1 | |
| maxLines=$2 | |
| echo "File name: $fileName" | |
| echo "Max Lines: $maxLines" | |
| getGotalLinesCommand="cat $fileName | wc -l" | |
| totalLines="$(eval $getGotalLinesCommand)" |