Find all the files in the current directory that weigh more than 5 KiB.
Searching files
Find files by size
Report a typo
Sample Input 1:
linux.img 100000
echo 1600
my.txt 5100
2020.patch 46650Sample Output 1:
./2020.patch
./linux.imgWrite 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.