Find hidden files

Report a typo

In Unix-like operating systems such as Linux, files are considered hidden if their names begin with a dot (.). Find all the hidden files in the current folder.

Sample Input 1:

.app_backup.bkp 19000
linux.img 100000
echo 1600
my.txt 5100
.secret_info.txt 2790
2020.patch 46650

Sample Output 1:

./.app_backup.bkp
./.secret_info.txt
Write a program in Shell
#!/usr/bin/env bash

solve() {
# add your solution here

}
___

Create a free account to access the full topic