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.
Searching files
Find hidden files
Report a typo
Sample Input 1:
.app_backup.bkp 19000
linux.img 100000
echo 1600
my.txt 5100
.secret_info.txt 2790
2020.patch 46650Sample Output 1:
./.app_backup.bkp
./.secret_info.txtWrite 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.