srand (owner)

Revisions

gist: 210237 Download_button fork
public
Public Clone URL: git://gist.github.com/210237.git
Embed All Files: show embed
Bash #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# Script for setting the size of the current Terminal.app window.
 
if [ $# -ne 2 ]
then
echo "Usage: ts <colmun_size> <row_size>"
    exit 1
fi
 
exec osascript <<EOF
tell application "Terminal"
tell front window
set number of columns to $1
set number of rows to $2
end tell
end tell
EOF