mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 15:30:40 +01:00
fix(genpass): add compatibility for macOS paste command
"paste" on macOS requires a '-' to signify that the standard input is used. Without the '-' character, the command errors out.
This commit is contained in:
committed by
Marc Cornellà
parent
076f7f1eb1
commit
2db42c6ce7
@@ -101,6 +101,6 @@ genpass-xkcd() {
|
||||
|
||||
for i in {1..$num}; do
|
||||
printf "$n-"
|
||||
printf "$dict" | shuf -n "$n" | paste -sd '-'
|
||||
printf "$dict" | shuf -n "$n" | paste -sd '-' -
|
||||
done
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user