diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2024-08-02 00:49:43 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2024-08-02 00:49:43 -0700 |
commit | 85533eb33e61bd431a428f94f47fcb33964c33f6 (patch) | |
tree | 6705dbad3a3190f0de6da8659cedbad92b452073 | |
parent | cdb868ab61053e90f0134fb4c24648f29cf013ff (diff) |
u: use more $@, fix upd at insp no $@ bug
-rwxr-xr-x | sh/u | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ git -C "$HOME/programs/config_local_arch" branch | awk '!/master/{print ($1=="*" # https://superuser.com/questions/241187/how-do-i-reload-inputrc # because I invoke bash, no need alacritty --hold #o alacritty -T "$branch" -e ssh -t "$branch" '. "$HOME/.profile" && upd; "$SHELL" -l' - o alacritty -T "$branch" -e ssh -t "$branch" '. "$HOME/.profile" &&' "upd $*;" '"$SHELL" -l' + o alacritty -T "$branch" -e ssh -t "$branch" '. "$HOME/.profile" && upd' "$@" '; "$SHELL" -l' done -upd +upd "$@" |