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
Hi there,
When I used echo command in alias function, -n option is not used by echo as follows:
echo
-n
foo = !f() { echo -n 1 }; f
$ aws foo -n 1
But, ls command can use options successfully:
ls
bar = !f() { ls }; f baz = !f() { ls -l }; f
$ aws bar file1 file2 $ aws baz total 0 -rw-r--r-- 1 aibou staff 0 3 16 15:20 file1 -rw-r--r-- 1 aibou staff 0 3 16 15:20 file2
It seems a bug but I can't understand why ONLY echo behave it...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there,
When I used
echo
command in alias function,-n
option is not used byecho
as follows:But,
ls
command can use options successfully:It seems a bug but I can't understand why ONLY
echo
behave it...The text was updated successfully, but these errors were encountered: