Script to guess Red Hat machine's build date.
[profile.git] / opt / bin / usize
index e1751fe..e965db3 100755 (executable)
@@ -4,6 +4,7 @@
 #        size.
 # Usage: usize <width> [<height>]
 # Usage: usize x<width_multiplier> [x<height_multiplier>]
+# Usage: usize X<multiplier>
 #
 
 width=${COLUMNS:-80}
@@ -20,12 +21,16 @@ case $# in
 esac
 
 # Allow, eg, x2 for width or height.
-if [ ! "${width#x}" = "${width}" ]; then
+if [ ! "${width#X}" = "$width" ]; then
+  width="${width/X/x}"
+  height=$width
+fi
+if [ ! "${width#x}" = "$width" ]; then
   # Add a column for dividers.
   width=${width#x}
   width=$((width-1+(87*width)))
 fi
-if [ ! "${height#x}" = "${height}" ]; then
+if [ ! "${height#x}" = "$height" ]; then
   height=${height#x}
   height=$((24*height))
   # Add a row for tmux.
@@ -33,5 +38,5 @@ if [ ! "${height#x}" = "${height}" ]; then
 fi
 
 [ -n "$TMUX" ] && tmux_prefix="\033Ptmux;\033"
-echo -e "$tmux_prefix\033[8;$height;$width;t"
+echo -en "$tmux_prefix\033[8;$height;$width;t"
 exit 0