We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c6cfe2e + 1ce9c09 commit 1766b4dCopy full SHA for 1766b4d
lsix
@@ -59,10 +59,16 @@ if ! command -v montage >/dev/null; then
59
exit 1
60
fi
61
62
+shopt -s expand_aliases # Allow aliases for working around quirks.
63
+
64
if command -v gsed >/dev/null; then
- alias sed=gsed # Use GNU sed for MacOS & BSD
65
+ alias sed=gsed # Use GNU sed for MacOS & BSD.
66
67
68
+if [[ "$COMSPEC" ]]; then
69
+ alias convert="magick convert" # Shun MS Windows' "convert" command.
70
+fi
71
72
cleanup() {
73
echo -n $'\e\\' # Escape sequence to stop SIXEL.
74
stty echo # Reset terminal to show characters.
0 commit comments