Find files by size

Report a typo

Find all the files in the current directory that weigh more than 5 KiB.

Sample Input 1:

linux.img 100000
echo 1600
my.txt 5100
2020.patch 46650

Sample Output 1:

./2020.patch
./linux.img
Write a program in Shell
#!/usr/bin/env bash

solve() {
# add your solution here

}
___

Create a free account to access the full topic