Find all .log files from the current directory that weigh between 10KiB and 20KiB.
Searching files
Find log files
Report a typo
Sample Input 1:
linux.log 19000
docker.img 16000
echo 1600
app.log 15100
2020.patch 46650Sample Output 1:
./app.log
./linux.logWrite a program in Shell
#!/usr/bin/env bash
solve() {
# add your solution here
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.