This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo Building Google Protobuf for Mac OS X / iOS. | |
echo Use 'tail -f build.log' to monitor progress. | |
( | |
PREFIX=`pwd`/protobuf | |
mkdir ${PREFIX} | |
mkdir ${PREFIX}/platform |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ksh | |
# | |
# iopattern - print disk I/O pattern. | |
# Written using DTrace (Solaris 10 3/05). | |
# | |
# This prints details on the I/O access pattern for the disks, such as | |
# percentage of events that were of a random or sequential nature. | |
# By default totals for all disks are printed. | |
# | |
# $Id: iopattern 65 2007-10-04 11:09:40Z brendan $ |