You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default input format is YAML and is what the binary is named for (and the most common primary usage case).
75
75
76
-
If you want to use it as the top level `yq` executable you can `alias yq=lq`. This should be compatible with `python-yq`, but it has some differences with the go yq.
76
+
If you want to use it as the top level `yq` executable you can either symlink or alias:
77
+
78
+
```sh
79
+
# globally make yq be lq
80
+
ln -s $(which lq) /usr/local/bin/yq
81
+
82
+
# alias yq to lq in shell environment only
83
+
alias yq=lq
84
+
```
85
+
86
+
This should be compatible with `python-yq`, but it has some differences with the go yq.
0 commit comments