diff options
author | listout <listout@protonmail.com> | 2022-12-31 22:01:38 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-12-31 22:01:38 +0530 |
commit | 0b723758097420c6ef01cb6549d70ba35358437a (patch) | |
tree | 79af639b1fb93a4a5b246660e44b8486dc7d0cce | |
parent | db07513f682a91f50b7ae5213c87a7bc3eb84b8b (diff) |
zsh: aliases: who cares
Signed-off-by: listout <listout@protonmail.com>
-rw-r--r-- | .config/zsh/aliases.zsh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.config/zsh/aliases.zsh b/.config/zsh/aliases.zsh index eb664d2..7c65b1a 100644 --- a/.config/zsh/aliases.zsh +++ b/.config/zsh/aliases.zsh @@ -47,14 +47,14 @@ function p () { } function b2() { - if [ $# -ne 2 ]; then - echo "Wrong amount of parameters" - return - fi + if [ $# -ne 2 ]; then + echo "Wrong amount of parameters" + return + fi - cp -v "${1}" "${2}" - ekeyword ~all "${2}" - ebuild "${2}" manifest + cp -v "${1}" "${2}"; + (ekeyword all "${2}") + ebuild "${2}" manifest; } function b () { |