We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This command gives the tabular output with details:
$ bash -c 'ls -l' total 0 -rw-r--r--. 1 user user 0 Aug 5 17:23 a -rw-r--r--. 1 user user 0 Aug 5 17:23 b -rw-r--r--. 1 user user 0 Aug 5 17:23 c
However, Viddy breaks it, and -l is passed to bash, not ls:
-l
bash
ls
viddy bash -c 'ls -l'
This behavior is present in traditional watch, but I don't actually see a reason for it.
watch
The text was updated successfully, but these errors were encountered:
Here the arguments are joined together, which causes the incorrect behavior if some arguments already contain spaces:
https://github.com/sachaos/viddy/blob/0ab3347/snapshot.go#L110
Sorry, something went wrong.
viddy "bash -c 'ls -l'" watch "bash -c 'ls -l'"
No branches or pull requests
This command gives the tabular output with details:
However, Viddy breaks it, and
-l
is passed tobash
, notls
:viddy bash -c 'ls -l'
This behavior is present in traditional
watch
, but I don't actually see a reason for it.The text was updated successfully, but these errors were encountered: