Skip to content

Instantly share code, notes, and snippets.

@nestoru
Last active October 10, 2020 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nestoru/11ed33fa8640c55f25ba4860110b4903 to your computer and use it in GitHub Desktop.
Save nestoru/11ed33fa8640c55f25ba4860110b4903 to your computer and use it in GitHub Desktop.
keep printing not empty directory listing - bash one liner
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