Last active
October 10, 2020 11:22
-
-
Save nestoru/11ed33fa8640c55f25ba4860110b4903 to your computer and use it in GitHub Desktop.
keep printing not empty directory listing - bash one liner
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
dir=$1 | |
while true; do sleep 5; [ ! -z "$(ls $dir)" ] && date && ls -alrt $dir; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment