Find log files

Report a typo

Find all .log files from the current directory that weigh between 10KiB and 20KiB.

Sample Input 1:

linux.log 19000
docker.img 16000
echo 1600
app.log 15100
2020.patch 46650

Sample Output 1:

./app.log
./linux.log
Write a program in Shell
#!/usr/bin/env bash

solve() {
# add your solution here

}
___

Create a free account to access the full topic