Last active
May 3, 2021 09:23
-
-
Save fegue/1cc6ad9e6573f5b48e5150508f280598 to your computer and use it in GitHub Desktop.
[Last modified files]Recursively find newest/last modified files in directory and print them to terminal #linux, #bash, #backup,#nextcloud
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
find /mnt/ncp-backup/backup-current/OekoFor -type f -printf "%T+\t%p\n" | sort | tail -10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment