Skip to content

Commit

Permalink
Use sed s/ instead of y/
Browse files Browse the repository at this point in the history
  • Loading branch information
jamielinux committed Aug 22, 2020
1 parent 7f53e80 commit 9e8e521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bashmount
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ print_submenu_commands() {
__print() {
printf "${BOLD}"
if (( pretty )); then
printf '%s\n\n' "$1" | sed -e "y/-/━/"
printf '%s\n\n' "$1" | sed -e "s/-/━/g"
else
printf '%s\n\n' "$1"
fi
Expand Down

0 comments on commit 9e8e521

Please sign in to comment.