Skip to content

Instantly share code, notes, and snippets.

@gin1314
Created March 18, 2017 08:50
Show Gist options
  • Save gin1314/525e89401538a6bf24781ad874feb273 to your computer and use it in GitHub Desktop.
Save gin1314/525e89401538a6bf24781ad874feb273 to your computer and use it in GitHub Desktop.
bash: simulate `watch` command
#!/bin/bash
while true; do; ls -la . | tr -d '\r\n'; echo -n "\r"; sleep 5; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment