Computer scienceSystem administration and DevOpsCommand lineWorking with files

Explore folders and files

Sort files by time

Report a typo

Write a program that will sort the files from the /tmp/test folder by their creation time in the ascending order and display the detailed information about them in the terminal.

Expected format:

total 48
-rw-r--r--. 1 sandbox sandbox  8322 Feb 26 18:30 wiki_data.txt
-rw-r--r--. 1 sandbox sandbox 20316 Feb 26 18:30 story.txt
-rw-r--r--. 1 sandbox sandbox 13108 Feb 26 18:30 Poems.pdf
Write a program in Shell
#!/usr/bin/env bash
solve() {
# add your solution here

}
___

Create a free account to access the full topic