# practicum week 5 ## 1 ```bash find ~ ``` ## 2 ```bash find ~ -type f ``` ## 3 ```bash find . -type f -mtime 1 ``` ## 4 ```bash find . -type f -exec wc -l {} \; | awk '$1 > 5 { print $2 }' ``` ## 5 ```bash $ ./textfrutter.sh -l -p "volgende argument is: " -v Bob Koen Bart volgende argument is: bb volgende argument is: kn volgende argument is: brt ``` ## 6 ```bash $ ./lettercount.sh practicum.md a e u i o a -> 12 e -> 23 u -> 6 i -> 11 o -> 6 $ ./lettercount.sh practicum.md not enough arguments usage: ./lettercount.sh [letter2] [letter3] [...] $ ```