海外旅行: 銀行に旅行を伝えておく

海外旅行を事前に銀行に伝えておくと、transactionに支障が出にくい。

 

'travel notice'でgoogle検索すると、公式twitterが出てきた。いわく、PNC bankの場合、Debit cardでログインして下記のようにタブをたどると、旅行を登録できる。

go to Cust Serv tab>Debit Card Serv>Debit/ATM Card Serv & Resources>Notify Us of Travel (bottom right)

 

2019/07/21 追記
To submit a request to place a travel notice, click on the Customer Service tab. Beneath the Manage Accounts section, click on the Debit Card Services link. From the Debit/ATM Card page, click on the Debit/ATM Card Services & Resources link. Under the Debit/ATM Card Maintenance section, click on the Notify Us of Travel link.

gala インストール

$ pip install astro-gala
Collecting astro-gala
Downloading astro-gala-0.1.3.tar.gz (1.1MB)
100% |████████████████████████████████| 1.1MB 229kB/s
Requirement already satisfied (use --upgrade to upgrade): astropy in /usr/local/anaconda/lib/python2.7/site-packages (from astro-gala)
Requirement already satisfied (use --upgrade to upgrade): pyyaml in /usr/local/anaconda/lib/python2.7/site-packages (from astro-gala)
Requirement already satisfied (use --upgrade to upgrade): scipy in /usr/local/anaconda/lib/python2.7/site-packages (from astro-gala)
Requirement already satisfied (use --upgrade to upgrade): numpy>=1.6.0 in /usr/local/anaconda/lib/python2.7/site-packages (from astropy->astro-gala)
Building wheels for collected packages: astro-gala
Running setup.py bdist_wheel for astro-gala
Stored in directory: /Users/kh_____i/Library/Caches/pip/wheels/f4/39/c5/76d9c26914a01fa4f90bf1e94cbb5940148fa87f4df201e6c1
Successfully built astro-gala
Installing collected packages: astro-gala
Successfully installed astro-gala-0.1.3
You are using pip version 7.1.2, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

sshでログインしてシェルを変更する

<目的>

大学のパソコンにsshで入ったのちに、bashに切り替える。
そして、".bash_profile" の中でPATHが定義されているanacondaを使えるようにする。

 

(1)ログイン時のシェルを調べる

% echo $SHELL
/bin/tcsh

=== tcshであることがわかる。


(2)利用できるシェルの種類を調べる

% cat /etc/shells
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.

/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh


(3)bashに切り替える

% bash
bash-3.2$


(4)そのままの状態でPYTHONPATHを調べる

bash-3.2$ echo $PYTHONPATH
[何も表示されない]


(5).bash_profileを読み込ませる


bash-3.2$ source .bash_profile
bash-3.2$ echo $PYTHONPATH
:/usr/local/anaconda/lib/python2.7/site-packages/

 

 

mac Pro 初期設定 Anaconda emcee corner PyGaia GSL

(1) Anaconda インストール
https://www.continuum.io/downloads

- Download the graphical installer
- Double-click the downloaded .pkg file and follow the instructions

これで全部完了。

(2) emcee

[事前準備]
[terminal]

デフォルト:
/bin/tcsh
を以下に変更:
/bin/bash


[.bashprofile]
.bash_profile に以下の行を付け加える:
_____
# Added by [my name] when managing the Python modules that can not be accessed.
export PYTHONPATH=$PYTHONPATH:/usr/local/anaconda/lib/python2.7/site-packages/
_____

[emcee]

$ git clone https://github.com/dfm/emcee.git
$ cd emcee
$ python setup.py install
. . .
Installed /Users/kh______/anaconda/lib/python2.7/site-packages/emcee-2.2.1-py2.7.egg
Processing dependencies for emcee==2.2.1
Searching for numpy==1.11.1
Best match: numpy 1.11.1
Adding numpy 1.11.1 to easy-install.pth file

Using /Users/kh______/anaconda/lib/python2.7/site-packages
Finished processing dependencies for emcee==2.2.1
ko__i:emcee kh______$ python -c 'import emcee'
Vendor: Continuum Analytics, Inc.
Package: mkl
Message: trial mode expires in 30 days
Vendor: Continuum Analytics, Inc.
Package: mkl
Message: trial mode expires in 30 days

と最後によくわからないメッセージが出るが気にしないでおく。


(3)corner.py


http://corner.readthedocs.io/en/latest/install.html#dependencies

$ git clone https://github.com/dfm/corner.py.git
$ cd corner.py
$ python setup.py install

テスト
$ nosetests corner
をしてみると、

. . .
======================================================================
FAIL: corner.tests.test_corner.test_tight.test
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/anaconda/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
self.test(*self.arg)
File "/usr/local/anaconda/lib/python2.7/site-packages/matplotlib/testing/decorators.py", line 51, in failer
result = f(*args, **kwargs)
File "/usr/local/anaconda/lib/python2.7/site-packages/matplotlib/testing/decorators.py", line 196, in do_test
'(RMS %(rms).3f)'%err)
ImageComparisonFailure: images not close: /Users/kh______/corner.py/result_images/test_corner/tight.png vs. /Users/kh______/corner.py/result_images/test_corner/tight-expected.png (RMS 42.126)

======================================================================
FAIL: corner.tests.test_corner.test_titles1.test
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/local/anaconda/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
self.test(*self.arg)
File "/usr/local/anaconda/lib/python2.7/site-packages/matplotlib/testing/decorators.py", line 51, in failer
result = f(*args, **kwargs)
File "/usr/local/anaconda/lib/python2.7/site-packages/matplotlib/testing/decorators.py", line 196, in do_test
'(RMS %(rms).3f)'%err)
ImageComparisonFailure: images not close: /Users/kh______/corner.py/result_images/test_corner/titles1.png vs. /Users/kh______/corner.py/result_images/test_corner/titles1-expected.png (RMS 13.492)

----------------------------------------------------------------------
Ran 36 tests in 19.327s

FAILED (failures=2)
. . .
などと言われるが、目で図を確認するとexpectedな図とほとんど完全に一致しているので問題はない模様。


(4) PyGaia

$ git clone https://github.com/agabrown/PyGaia.git

$ python setup.py install
. . .
zip_safe flag not set; analyzing archive contents...
creating dist
creating 'dist/PyGaia-1.1-py2.7.egg' and adding 'build/bdist.macosx-10.6-x86_64/egg' to it
removing 'build/bdist.macosx-10.6-x86_64/egg' (and everything under it)
Processing PyGaia-1.1-py2.7.egg
Copying PyGaia-1.1-py2.7.egg to /Users/kh______/anaconda/lib/python2.7/site-packages
Adding PyGaia 1.1 to easy-install.pth file

Installed /Users/kh______/anaconda/lib/python2.7/site-packages/PyGaia-1.1-py2.7.egg
Processing dependencies for PyGaia==1.1
Searching for scipy==0.18.1
Best match: scipy 0.18.1
Adding scipy 0.18.1 to easy-install.pth file

Using /Users/kh______/anaconda/lib/python2.7/site-packages
Searching for numpy==1.11.1
Best match: numpy 1.11.1
Adding numpy 1.11.1 to easy-install.pth file

Using /Users/kh______/anaconda/lib/python2.7/site-packages
Finished processing dependencies for PyGaia==1.1
. . .

どうやらversion 1.1らしい。


(5) GSLインストール

sudo が使えないためインストールできず。

download GSL-2.2.1
>>> linear fitting with large amount of data is now available!

$ cd gsl-2.2.1
$ ./configure
$ make
---ここまで---
$ sudo make install #sudo できず!!!

と思ったら、大学の初期設定でgslがインストールされていることが判明。
gcc -o bessel bessel.c -lgsl -lgslcblas -lm -L/opt/local/lib
のようにしてコンパイルが可能だった。これを
gcc -o bessel bessel.c -lgsl -lgslcblas -lm
のように簡略化するため、
".bash_profile"に下記のように加筆する。
# Added by [my name] when trying to set the gcc options (19 November 2016)
export LIBRARY_PATH=/opt/local/lib:$LIBRARY_PATH

----
gslに関する重要事項:

https://www.gnu.org/software/gsl/manual/html_node/Linking-programs-with-the-library.html#Linking-programs-with-the-library

The library is installed as a single file, libgsl.a.
とある。丹念に探すと、
Ko__i/opt/local/lib/libgsl.a
を発見。最初のKo__iは自分の大学のマシン名であるらしい。

 

 

 

Spotlightが容量を300GB使っている

急速にmac miniのデータ容量が減ってきたので、調べたところ、Spotlightが容量を300GB使っていることが判明。そこで、対象ファイルを削除した。

 

[step 1]

$ df -h

Filesystem Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk2 1.0Ti 1.0Ti 13Gi 99% 268600574 3488900 99% /
devfs 197Ki 197Ki 0Bi 100% 680 0 100% /dev
map -hosts 0Bi 0Bi 0Bi 100% 0 0 100% /net
map auto_home 0Bi 0Bi 0Bi 100% 0 0 100% /home

 

$ sudo du -g -x -d 5 / | awk '$1 >= 5{print}'

297 /.Spotlight-V100/Store-V2/442310BF-DE1C-46A8-A5E7-E7B860C7460C
297 /.Spotlight-V100/Store-V2
297 /.Spotlight-V100
10 /Applications
7 /Library
5 /opt/local
6 /opt
5 /private/var
5 /private
6 /System/Library
6 /System
.....

 

[step 2]
$ sudo ls -laT /.Spotlight-V100/Store-V2/442310BF-DE1C-46A8-A5E7-E7B860C7460C/

で重そうかつ不要そうなファイルを調べて、

 

[step 3]

$ sudo rm -ri /.Spotlight-V100/Store-V2/442310BF-DE1C-46A8-A5E7-E7B860C7460C/_FILE_NAME_

で一つづつ削除。

 

[step 5]

$ df -h
Filesystem Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk2 1.0Ti 704Gi 334Gi 68% 184537356 87552118 68% /
devfs 197Ki 197Ki 0Bi 100% 680 0 100% /dev
map -hosts 0Bi 0Bi 0Bi 100% 0 0 100% /net
map auto_home 0Bi 0Bi 0Bi 100% 0 0 100% /home

$ sudo du -g -x -d 5 / | awk '$1 >= 5{print}'

10 /Applications
7 /Library
5 /opt/local
6 /opt
5 /private/var
5 /private
6 /System/Library
6 /System

 

[step 5] 

System Preference > Spotlight > Privacy 

で、「Macintosh HD」をリストに加える。

 


====[step 2]の結果=====

total 62752488
drwx------ 391 root wheel 13294 2 Nov 17:40:50 2016 .
drwx------ 3 root wheel 102 24 Aug 11:08:47 2016 ..
-rw------- 1 root wheel 689065984 2 Nov 17:30:06 2016 .store.db
drwx------ 3 root wheel 102 24 Aug 11:14:30 2016 Cache
-rw------- 1 root wheel 0 24 Aug 11:06:11 2016 Lion.created
-rw------- 1 root wheel 9 2 Nov 17:04:50 2016 dirStore.overlay
-rw------- 1 root wheel 28 2 Nov 17:04:55 2016 indexState
-rw------- 1 root wheel 0 2 Nov 17:30:25 2016 journalAttr.831
-rw------- 1 root wheel 256 2 Nov 16:36:14 2016 journalExclusion
drwx------ 2 root wheel 68 24 Aug 11:06:12 2016 journals.assisted_import_post
drwx------ 2 root wheel 68 24 Aug 11:06:12 2016 journals.assisted_import_pre
drwx------ 3 root wheel 102 1 Nov 14:46:19 2016 journals.health_check
drwx------ 2 root wheel 68 24 Aug 11:06:12 2016 journals.live
drwx------ 2 root wheel 68 24 Aug 11:06:12 2016 journals.live_priority
drwx------ 3 root wheel 102 2 Nov 17:04:52 2016 journals.live_system
drwx------ 3 root wheel 102 2 Nov 16:05:01 2016 journals.live_user
drwx------ 2 root wheel 68 24 Aug 11:06:12 2016 journals.migration
drwx------ 2 root wheel 68 24 Aug 11:06:12 2016 journals.migration_secondchance
drwx------ 2 root wheel 68 28 Aug 10:43:16 2016 journals.repair
drwx------ 4 root wheel 136 2 Nov 17:30:27 2016 journals.scan
-rw------- 1 root wheel 1048576 2 Nov 17:30:12 2016 live.0.directoryStoreFile
-rw------- 1 root wheel 1048576 2 Nov 05:43:22 2016 live.0.directoryStoreFile.shadow
-rw------- 1 root wheel 328192768 22 Oct 01:11:23 2016 live.0.indexArrays
-rw------- 1 root wheel 148554450 22 Oct 01:11:23 2016 live.0.indexCompactDirectory
-rw------- 1 root wheel 4524228 22 Oct 01:11:23 2016 live.0.indexDirectory
-rw------- 1 root wheel 1013601 2 Nov 16:19:19 2016 live.0.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:37 2016 live.0.indexHead
-rw------- 1 root wheel 10136008 1 Nov 17:19:01 2016 live.0.indexIds
-rw------- 1 root wheel 325 22 Oct 01:11:22 2016 live.0.indexUpdates
-rw------- 1 root wheel 1013601 2 Nov 16:19:19 2016 live.0.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:19 2016 live.0.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.1.directoryStoreFile
-rw------- 1 root wheel 1792 1 Nov 20:19:49 2016 live.1.directoryStoreFile.shadow
-rw------- 1 root wheel 66816 22 Oct 01:16:12 2016 live.1.indexArrays
-rw------- 1 root wheel 8 22 Oct 01:16:12 2016 live.1.indexCompactDirectory
-rw------- 1 root wheel 2056 22 Oct 01:16:12 2016 live.1.indexDirectory
-rw------- 1 root wheel 2 22 Oct 05:35:16 2016 live.1.indexGroups
-rw------- 1 root wheel 4096 1 Nov 20:20:02 2016 live.1.indexHead
-rw------- 1 root wheel 16 22 Oct 01:16:12 2016 live.1.indexIds
-rw------- 1 root wheel 8 22 Oct 01:16:04 2016 live.1.indexPositions
-rw------- 1 root wheel 142 22 Oct 01:16:04 2016 live.1.indexPostings
-rw------- 1 root wheel 12 22 Oct 01:16:12 2016 live.1.indexUpdates
-rw------- 1 root wheel 2 1 Nov 20:19:49 2016 live.1.shadowIndexGroups
-rw------- 1 root wheel 4096 1 Nov 20:19:49 2016 live.1.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.10.directoryStoreFile
-rw------- 1 root wheel 5056 1 Nov 20:19:50 2016 live.10.directoryStoreFile.shadow
-rw------- 1 root wheel 4079936 27 Oct 12:24:56 2016 live.10.indexArrays
-rw------- 1 root wheel 266692 27 Oct 12:24:56 2016 live.10.indexCompactDirectory
-rw------- 1 root wheel 2056 27 Oct 12:24:56 2016 live.10.indexDirectory
-rw------- 1 root wheel 707 2 Nov 16:19:04 2016 live.10.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.10.indexHead
-rw------- 1 root wheel 7064 27 Oct 12:24:56 2016 live.10.indexIds
-rw------- 1 root wheel 6847372 27 Oct 12:24:51 2016 live.10.indexPositions
-rw------- 1 root wheel 2014753 27 Oct 12:24:51 2016 live.10.indexPostings
-rw------- 1 root wheel 15 27 Oct 12:24:56 2016 live.10.indexUpdates
-rw------- 1 root wheel 707 2 Nov 16:19:04 2016 live.10.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:04 2016 live.10.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.11.directoryStoreFile
-rw------- 1 root wheel 1792 1 Nov 20:19:50 2016 live.11.directoryStoreFile.shadow
-rw------- 1 root wheel 1379840 27 Oct 12:26:12 2016 live.11.indexArrays
-rw------- 1 root wheel 73888 27 Oct 12:26:12 2016 live.11.indexCompactDirectory
-rw------- 1 root wheel 2056 27 Oct 12:26:12 2016 live.11.indexDirectory
-rw------- 1 root wheel 16 27 Oct 12:27:22 2016 live.11.indexGroups
-rw------- 1 root wheel 4096 1 Nov 20:20:02 2016 live.11.indexHead
-rw------- 1 root wheel 152 27 Oct 12:26:12 2016 live.11.indexIds
-rw------- 1 root wheel 2835541 27 Oct 12:26:09 2016 live.11.indexPositions
-rw------- 1 root wheel 263775 27 Oct 12:26:09 2016 live.11.indexPostings
-rw------- 1 root wheel 13 27 Oct 12:26:12 2016 live.11.indexUpdates
-rw------- 1 root wheel 16 1 Nov 20:19:50 2016 live.11.shadowIndexGroups
-rw------- 1 root wheel 4096 1 Nov 20:19:50 2016 live.11.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.12.directoryStoreFile
-rw------- 1 root wheel 1792 1 Nov 20:19:50 2016 live.12.directoryStoreFile.shadow
-rw------- 1 root wheel 1379840 27 Oct 12:30:38 2016 live.12.indexArrays
-rw------- 1 root wheel 73888 27 Oct 12:30:38 2016 live.12.indexCompactDirectory
-rw------- 1 root wheel 2056 27 Oct 12:30:38 2016 live.12.indexDirectory
-rw------- 1 root wheel 16 27 Oct 13:28:26 2016 live.12.indexGroups
-rw------- 1 root wheel 4096 1 Nov 20:20:02 2016 live.12.indexHead
-rw------- 1 root wheel 152 27 Oct 12:30:38 2016 live.12.indexIds
-rw------- 1 root wheel 2835541 27 Oct 12:30:36 2016 live.12.indexPositions
-rw------- 1 root wheel 263775 27 Oct 12:30:36 2016 live.12.indexPostings
-rw------- 1 root wheel 13 27 Oct 12:30:37 2016 live.12.indexUpdates
-rw------- 1 root wheel 16 1 Nov 20:19:50 2016 live.12.shadowIndexGroups
-rw------- 1 root wheel 4096 1 Nov 20:19:50 2016 live.12.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.13.directoryStoreFile
-rw------- 1 root wheel 5056 1 Nov 20:19:51 2016 live.13.directoryStoreFile.shadow
-rw------- 1 root wheel 2671552 2 Nov 16:19:04 2016 live.13.indexArrays
-rw------- 1 root wheel 3618 2 Nov 16:19:04 2016 live.13.indexCompactDirectory
-rw------- 1 root wheel 4112 2 Nov 16:19:04 2016 live.13.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 16:19:04 2016 live.13.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.13.indexHead
-rw------- 1 root wheel 12368 2 Nov 16:19:04 2016 live.13.indexIds
-rw------- 1 root wheel 1422336 2 Nov 16:19:04 2016 live.13.indexPositionTable
-rw------- 1 root wheel 33554432 2 Nov 14:09:31 2016 live.13.indexPositions
-rw------- 1 root wheel 4194304 2 Nov 14:09:30 2016 live.13.indexPostings
-rw------- 1 root wheel 1422336 2 Nov 16:19:04 2016 live.13.indexTermIds
-rw------- 1 root wheel 10 2 Nov 16:19:04 2016 live.13.indexUpdates
-rw------- 1 root wheel 1237 2 Nov 16:19:04 2016 live.13.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:04 2016 live.13.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.14.directoryStoreFile
-rw------- 1 root wheel 2560 1 Nov 20:19:51 2016 live.14.directoryStoreFile.shadow
-rw------- 1 root wheel 48384 2 Nov 16:19:04 2016 live.14.indexArrays
-rw------- 1 root wheel 8 2 Nov 16:19:04 2016 live.14.indexCompactDirectory
-rw------- 1 root wheel 2056 2 Nov 16:19:04 2016 live.14.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 14:09:31 2016 live.14.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.14.indexHead
-rw------- 1 root wheel 152 2 Nov 16:19:04 2016 live.14.indexIds
-rw------- 1 root wheel 35304 2 Nov 16:19:04 2016 live.14.indexPositionTable
-rw------- 1 root wheel 131072 2 Nov 14:09:31 2016 live.14.indexPositions
-rw------- 1 root wheel 32768 2 Nov 14:09:31 2016 live.14.indexPostings
-rw------- 1 root wheel 35304 2 Nov 16:19:04 2016 live.14.indexTermIds
-rw------- 1 root wheel 0 1 Nov 20:19:56 2016 live.14.indexUpdates
-rw------- 1 root wheel 16 2 Nov 16:19:04 2016 live.14.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:04 2016 live.14.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.15.directoryStoreFile
-rw------- 1 root wheel 6016 1 Nov 20:19:51 2016 live.15.directoryStoreFile.shadow
-rw------- 1 root wheel 6033920 2 Nov 16:32:07 2016 live.15.indexArrays
-rw------- 1 root wheel 3784 2 Nov 16:19:04 2016 live.15.indexCompactDirectory
-rw------- 1 root wheel 2056 2 Nov 16:19:04 2016 live.15.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 16:19:04 2016 live.15.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.15.indexHead
-rw------- 1 root wheel 12560 2 Nov 16:19:04 2016 live.15.indexIds
-rw------- 1 root wheel 2262984 2 Nov 16:19:04 2016 live.15.indexPositionTable
-rw------- 1 root wheel 67108864 2 Nov 14:09:32 2016 live.15.indexPositions
-rw------- 1 root wheel 16777216 2 Nov 14:09:32 2016 live.15.indexPostings
-rw------- 1 root wheel 2262984 2 Nov 16:19:04 2016 live.15.indexTermIds
-rw------- 1 root wheel 10 2 Nov 16:19:04 2016 live.15.indexUpdates
-rw------- 1 root wheel 1256 2 Nov 16:19:04 2016 live.15.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:04 2016 live.15.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.16.directoryStoreFile
-rw------- 1 root wheel 2240 1 Nov 20:19:52 2016 live.16.directoryStoreFile.shadow
-rw------- 1 root wheel 31040 2 Nov 16:19:04 2016 live.16.indexArrays
-rw------- 1 root wheel 8 2 Nov 16:19:04 2016 live.16.indexCompactDirectory
-rw------- 1 root wheel 2056 2 Nov 16:19:04 2016 live.16.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 14:09:32 2016 live.16.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.16.indexHead
-rw------- 1 root wheel 4240 2 Nov 16:19:04 2016 live.16.indexIds
-rw------- 1 root wheel 16800 2 Nov 16:19:04 2016 live.16.indexPositionTable
-rw------- 1 root wheel 4096 2 Nov 14:09:32 2016 live.16.indexPositions
-rw------- 1 root wheel 262144 2 Nov 14:09:32 2016 live.16.indexPostings
-rw------- 1 root wheel 16800 2 Nov 16:19:04 2016 live.16.indexTermIds
-rw------- 1 root wheel 0 1 Nov 20:19:56 2016 live.16.indexUpdates
-rw------- 1 root wheel 424 2 Nov 16:19:04 2016 live.16.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:04 2016 live.16.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.17.directoryStoreFile
-rw------- 1 root wheel 1536 1 Nov 20:19:52 2016 live.17.directoryStoreFile.shadow
-rw------- 1 root wheel 4672 2 Nov 16:19:04 2016 live.17.indexArrays
-rw------- 1 root wheel 8 2 Nov 16:19:04 2016 live.17.indexCompactDirectory
-rw------- 1 root wheel 2056 2 Nov 16:19:04 2016 live.17.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 14:09:33 2016 live.17.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.17.indexHead
-rw------- 1 root wheel 504 2 Nov 16:19:04 2016 live.17.indexIds
-rw------- 1 root wheel 2576 2 Nov 16:19:04 2016 live.17.indexPositionTable
-rw------- 1 root wheel 4096 2 Nov 14:09:33 2016 live.17.indexPositions
-rw------- 1 root wheel 16384 2 Nov 14:09:33 2016 live.17.indexPostings
-rw------- 1 root wheel 2576 2 Nov 16:19:04 2016 live.17.indexTermIds
-rw------- 1 root wheel 0 1 Nov 20:19:56 2016 live.17.indexUpdates
-rw------- 1 root wheel 51 2 Nov 16:19:04 2016 live.17.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:04 2016 live.17.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.18.directoryStoreFile
-rw------- 1 root wheel 2240 1 Nov 20:19:52 2016 live.18.directoryStoreFile.shadow
-rw------- 1 root wheel 19008 2 Nov 16:19:04 2016 live.18.indexArrays
-rw------- 1 root wheel 8 2 Nov 16:19:04 2016 live.18.indexCompactDirectory
-rw------- 1 root wheel 2056 2 Nov 16:19:04 2016 live.18.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 14:09:33 2016 live.18.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.18.indexHead
-rw------- 1 root wheel 2152 2 Nov 16:19:04 2016 live.18.indexIds
-rw------- 1 root wheel 10016 2 Nov 16:19:04 2016 live.18.indexPositionTable
-rw------- 1 root wheel 4096 2 Nov 14:09:33 2016 live.18.indexPositions
-rw------- 1 root wheel 131072 2 Nov 14:09:33 2016 live.18.indexPostings
-rw------- 1 root wheel 10016 2 Nov 16:19:04 2016 live.18.indexTermIds
-rw------- 1 root wheel 0 1 Nov 20:19:56 2016 live.18.indexUpdates
-rw------- 1 root wheel 216 2 Nov 16:19:04 2016 live.18.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:04 2016 live.18.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.19.directoryStoreFile
-rw------- 1 root wheel 5760 2 Nov 16:19:19 2016 live.19.directoryStoreFile.shadow
-rw------- 1 root wheel 417472 2 Nov 16:19:19 2016 live.19.indexArrays
-rw------- 1 root wheel 640 2 Nov 16:19:19 2016 live.19.indexCompactDirectory
-rw------- 1 root wheel 2056 2 Nov 16:19:19 2016 live.19.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 16:19:16 2016 live.19.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:37 2016 live.19.indexHead
-rw------- 1 root wheel 7752 2 Nov 16:19:19 2016 live.19.indexIds
-rw------- 1 root wheel 224504 2 Nov 16:19:19 2016 live.19.indexPositionTable
-rw------- 1 root wheel 1048576 2 Nov 14:09:34 2016 live.19.indexPositions
-rw------- 1 root wheel 524288 2 Nov 16:19:16 2016 live.19.indexPostings
-rw------- 1 root wheel 224504 2 Nov 16:19:19 2016 live.19.indexTermIds
-rw------- 1 root wheel 0 2 Nov 16:19:17 2016 live.19.indexUpdates
-rw------- 1 root wheel 776 2 Nov 16:19:19 2016 live.19.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:19 2016 live.19.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.2.directoryStoreFile
-rw------- 1 root wheel 1600 1 Nov 20:19:49 2016 live.2.directoryStoreFile.shadow
-rw------- 1 root wheel 64 26 Oct 15:04:02 2016 live.2.indexArrays
-rw------- 1 root wheel 8 22 Oct 05:33:26 2016 live.2.indexCompactDirectory
-rw------- 1 root wheel 2056 22 Oct 05:33:26 2016 live.2.indexDirectory
-rw------- 1 root wheel 280 22 Oct 19:30:59 2016 live.2.indexGroups
-rw------- 1 root wheel 4096 1 Nov 20:20:02 2016 live.2.indexHead
-rw------- 1 root wheel 2800 22 Oct 05:33:26 2016 live.2.indexIds
-rw------- 1 root wheel 8 22 Oct 05:33:24 2016 live.2.indexPositions
-rw------- 1 root wheel 8 22 Oct 05:33:24 2016 live.2.indexPostings
-rw------- 1 root wheel 11 22 Oct 05:33:25 2016 live.2.indexUpdates
-rw------- 1 root wheel 280 1 Nov 20:19:49 2016 live.2.shadowIndexGroups
-rw------- 1 root wheel 4096 1 Nov 20:19:49 2016 live.2.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.20.directoryStoreFile
-rw------- 1 root wheel 7744 2 Nov 10:33:21 2016 live.20.directoryStoreFile.shadow
-rw------- 1 root wheel 7292800 2 Nov 16:31:07 2016 live.20.indexArrays
-rw------- 1 root wheel 1170 2 Nov 16:19:20 2016 live.20.indexCompactDirectory
-rw------- 1 root wheel 17476 2 Nov 16:19:20 2016 live.20.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 16:19:42 2016 live.20.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:20:37 2016 live.20.indexHead
-rw------- 1 root wheel 31920 2 Nov 16:19:20 2016 live.20.indexIds
-rw------- 1 root wheel 4213968 2 Nov 16:19:20 2016 live.20.indexPositionTable
-rw------- 1 root wheel 16777216 2 Nov 14:09:35 2016 live.20.indexPositions
-rw------- 1 root wheel 8388608 2 Nov 14:09:34 2016 live.20.indexPostings
-rw------- 1 root wheel 4213968 2 Nov 16:19:20 2016 live.20.indexTermIds
-rw------- 1 root wheel 10 2 Nov 16:19:19 2016 live.20.indexUpdates
-rw------- 1 root wheel 3192 2 Nov 16:19:45 2016 live.20.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:45 2016 live.20.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.21.directoryStoreFile
-rw------- 1 root wheel 2624 1 Nov 20:19:53 2016 live.21.directoryStoreFile.shadow
-rw------- 1 root wheel 100928 1 Nov 11:38:03 2016 live.21.indexArrays
-rw------- 1 root wheel 8 1 Nov 11:38:03 2016 live.21.indexCompactDirectory
-rw------- 1 root wheel 2056 1 Nov 11:38:03 2016 live.21.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 16:19:39 2016 live.21.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:20:16 2016 live.21.indexHead
-rw------- 1 root wheel 1816 2 Nov 12:19:38 2016 live.21.indexIds
-rw------- 1 root wheel 78240 1 Nov 11:38:03 2016 live.21.indexPositionTable
-rw------- 1 root wheel 65536 1 Nov 11:37:41 2016 live.21.indexPositions
-rw------- 1 root wheel 131072 1 Nov 11:38:02 2016 live.21.indexPostings
-rw------- 1 root wheel 78240 1 Nov 11:38:03 2016 live.21.indexTermIds
-rw------- 1 root wheel 14 1 Nov 11:38:02 2016 live.21.indexUpdates
-rw------- 1 root wheel 182 2 Nov 16:19:40 2016 live.21.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:40 2016 live.21.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:13 2016 live.22.directoryStoreFile
-rw------- 1 root wheel 1088 1 Nov 20:19:53 2016 live.22.directoryStoreFile.shadow
-rw------- 1 root wheel 64 1 Nov 11:38:05 2016 live.22.indexArrays
-rw------- 1 root wheel 8 1 Nov 11:38:05 2016 live.22.indexCompactDirectory
-rw------- 1 root wheel 2056 1 Nov 11:38:05 2016 live.22.indexDirectory
-rw------- 1 root wheel 3277 1 Nov 11:38:01 2016 live.22.indexGroups
-rw------- 1 root wheel 4096 1 Nov 20:20:02 2016 live.22.indexHead
-rw------- 1 root wheel 8 1 Nov 11:38:05 2016 live.22.indexIds
-rw------- 1 root wheel 8 1 Nov 11:38:05 2016 live.22.indexPositionTable
-rw------- 1 root wheel 4096 1 Nov 11:38:01 2016 live.22.indexPositions
-rw------- 1 root wheel 4096 1 Nov 11:38:01 2016 live.22.indexPostings
-rw------- 1 root wheel 8 1 Nov 11:38:05 2016 live.22.indexTermIds
-rw------- 1 root wheel 0 1 Nov 11:38:01 2016 live.22.indexUpdates
-rw------- 1 root wheel 1 1 Nov 20:19:54 2016 live.22.shadowIndexGroups
-rw------- 1 root wheel 4096 1 Nov 20:19:54 2016 live.22.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:14 2016 live.23.directoryStoreFile
-rw------- 1 root wheel 16000 2 Nov 17:04:54 2016 live.23.directoryStoreFile.shadow
-rw------- 1 root wheel 8388608 2 Nov 17:30:14 2016 live.23.indexArrays
-rw------- 1 root wheel 2048 2 Nov 17:30:14 2016 live.23.indexCompactDirectory
-rw------- 1 root wheel 32896 2 Nov 17:30:14 2016 live.23.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 17:30:13 2016 live.23.indexGroups
-rw------- 1 root wheel 4096 2 Nov 17:30:09 2016 live.23.indexHead
-rw------- 1 root wheel 32768 2 Nov 17:30:13 2016 live.23.indexIds
-rw------- 1 root wheel 4194304 2 Nov 17:30:14 2016 live.23.indexPositionTable
-rw------- 1 root wheel 67108864 2 Nov 17:30:14 2016 live.23.indexPositions
-rw------- 1 root wheel 16777216 2 Nov 17:30:13 2016 live.23.indexPostings
-rw------- 1 root wheel 4194304 2 Nov 17:30:13 2016 live.23.indexTermIds
-rw------- 1 root wheel 0 2 Nov 17:30:06 2016 live.23.indexUpdates
-rw------- 1 root wheel 8388608 2 Nov 17:04:54 2016 live.23.shadowIndexArrays
-rw------- 1 root wheel 1464 2 Nov 17:04:54 2016 live.23.shadowIndexCompactDirectory
-rw------- 1 root wheel 21588 2 Nov 17:04:54 2016 live.23.shadowIndexDirectory
-rw------- 1 root wheel 3238 2 Nov 17:04:54 2016 live.23.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 17:04:54 2016 live.23.shadowIndexHead
-rw------- 1 root wheel 2619792 2 Nov 16:05:20 2016 live.23.shadowIndexPositionTable
-rw------- 1 root wheel 2724928 2 Nov 17:04:54 2016 live.23.shadowIndexTermIds
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.3.directoryStoreFile
-rw------- 1 root wheel 1600 1 Nov 20:19:49 2016 live.3.directoryStoreFile.shadow
-rw------- 1 root wheel 1968832 22 Oct 01:25:46 2016 live.3.indexArrays
-rw------- 1 root wheel 1840 22 Oct 01:25:46 2016 live.3.indexCompactDirectory
-rw------- 1 root wheel 2056 22 Oct 01:25:46 2016 live.3.indexDirectory
-rw------- 1 root wheel 3277 22 Oct 05:35:16 2016 live.3.indexGroups
-rw------- 1 root wheel 4096 1 Nov 20:20:02 2016 live.3.indexHead
-rw------- 1 root wheel 112 22 Oct 01:25:46 2016 live.3.indexIds
-rw------- 1 root wheel 1054616 22 Oct 01:25:46 2016 live.3.indexPositionTable
-rw------- 1 root wheel 8388608 22 Oct 01:25:43 2016 live.3.indexPositions
-rw------- 1 root wheel 1048576 22 Oct 01:25:41 2016 live.3.indexPostings
-rw------- 1 root wheel 1054616 22 Oct 01:25:46 2016 live.3.indexTermIds
-rw------- 1 root wheel 17 22 Oct 01:25:43 2016 live.3.indexUpdates
-rw------- 1 root wheel 12 1 Nov 20:19:49 2016 live.3.shadowIndexGroups
-rw------- 1 root wheel 4096 1 Nov 20:19:49 2016 live.3.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.4.directoryStoreFile
-rw------- 1 root wheel 2496 1 Nov 20:19:49 2016 live.4.directoryStoreFile.shadow
-rw------- 1 root wheel 1383488 23 Oct 01:01:46 2016 live.4.indexArrays
-rw------- 1 root wheel 73888 23 Oct 01:01:46 2016 live.4.indexCompactDirectory
-rw------- 1 root wheel 2056 23 Oct 01:01:46 2016 live.4.indexDirectory
-rw------- 1 root wheel 4670 24 Oct 01:29:01 2016 live.4.indexGroups
-rw------- 1 root wheel 4096 1 Nov 20:20:02 2016 live.4.indexHead
-rw------- 1 root wheel 46696 26 Oct 15:04:02 2016 live.4.indexIds
-rw------- 1 root wheel 2833352 23 Oct 01:01:41 2016 live.4.indexPositions
-rw------- 1 root wheel 397745 23 Oct 01:01:41 2016 live.4.indexPostings
-rw------- 1 root wheel 13 23 Oct 01:01:45 2016 live.4.indexUpdates
-rw------- 1 root wheel 4670 1 Nov 20:19:49 2016 live.4.shadowIndexGroups
-rw------- 1 root wheel 4096 1 Nov 20:19:49 2016 live.4.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.5.directoryStoreFile
-rw------- 1 root wheel 8896 1 Nov 20:19:49 2016 live.5.directoryStoreFile.shadow
-rw------- 1 root wheel 8115392 25 Oct 00:56:37 2016 live.5.indexArrays
-rw------- 1 root wheel 400486 25 Oct 00:56:37 2016 live.5.indexCompactDirectory
-rw------- 1 root wheel 30840 25 Oct 00:56:37 2016 live.5.indexDirectory
-rw------- 1 root wheel 5234 2 Nov 16:19:05 2016 live.5.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.5.indexHead
-rw------- 1 root wheel 52336 27 Oct 19:22:23 2016 live.5.indexIds
-rw------- 1 root wheel 49471397 25 Oct 00:56:11 2016 live.5.indexPositions
-rw------- 1 root wheel 11549887 25 Oct 00:56:11 2016 live.5.indexPostings
-rw------- 1 root wheel 19 25 Oct 00:56:36 2016 live.5.indexUpdates
-rw------- 1 root wheel 5234 2 Nov 16:19:05 2016 live.5.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:05 2016 live.5.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.6.directoryStoreFile
-rw------- 1 root wheel 1088 1 Nov 20:19:49 2016 live.6.directoryStoreFile.shadow
-rw------- 1 root wheel 64 25 Oct 00:52:17 2016 live.6.indexArrays
-rw------- 1 root wheel 8 25 Oct 00:52:17 2016 live.6.indexCompactDirectory
-rw------- 1 root wheel 2056 25 Oct 00:52:17 2016 live.6.indexDirectory
-rw------- 1 root wheel 3277 25 Oct 00:51:51 2016 live.6.indexGroups
-rw------- 1 root wheel 4096 1 Nov 20:20:02 2016 live.6.indexHead
-rw------- 1 root wheel 8 25 Oct 00:52:17 2016 live.6.indexIds
-rw------- 1 root wheel 8 25 Oct 00:52:17 2016 live.6.indexPositionTable
-rw------- 1 root wheel 4096 25 Oct 00:51:51 2016 live.6.indexPositions
-rw------- 1 root wheel 4096 25 Oct 00:51:51 2016 live.6.indexPostings
-rw------- 1 root wheel 8 25 Oct 00:52:17 2016 live.6.indexTermIds
-rw------- 1 root wheel 0 25 Oct 00:51:53 2016 live.6.indexUpdates
-rw------- 1 root wheel 1 1 Nov 20:19:49 2016 live.6.shadowIndexGroups
-rw------- 1 root wheel 4096 1 Nov 20:19:49 2016 live.6.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.7.directoryStoreFile
-rw------- 1 root wheel 1344 2 Nov 16:18:49 2016 live.7.directoryStoreFile.shadow
-rw------- 1 root wheel 4032 2 Nov 16:18:50 2016 live.7.indexArrays
-rw------- 1 root wheel 8 2 Nov 16:18:50 2016 live.7.indexCompactDirectory
-rw------- 1 root wheel 2056 2 Nov 16:18:50 2016 live.7.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 16:18:49 2016 live.7.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.7.indexHead
-rw------- 1 root wheel 80 2 Nov 16:18:50 2016 live.7.indexIds
-rw------- 1 root wheel 1736 2 Nov 16:18:50 2016 live.7.indexPositionTable
-rw------- 1 root wheel 4096 2 Nov 14:09:28 2016 live.7.indexPositions
-rw------- 1 root wheel 4096 2 Nov 16:18:49 2016 live.7.indexPostings
-rw------- 1 root wheel 1736 2 Nov 16:18:50 2016 live.7.indexTermIds
-rw------- 1 root wheel 13 2 Nov 16:18:49 2016 live.7.indexUpdates
-rw------- 1 root wheel 8 2 Nov 16:18:50 2016 live.7.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:18:50 2016 live.7.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.8.directoryStoreFile
-rw------- 1 root wheel 8192 1 Nov 20:19:50 2016 live.8.directoryStoreFile.shadow
-rw------- 1 root wheel 11158848 27 Oct 10:27:12 2016 live.8.indexArrays
-rw------- 1 root wheel 313386 27 Oct 10:27:12 2016 live.8.indexCompactDirectory
-rw------- 1 root wheel 22616 27 Oct 10:27:12 2016 live.8.indexDirectory
-rw------- 1 root wheel 27083 2 Nov 16:19:02 2016 live.8.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.8.indexHead
-rw------- 1 root wheel 270824 27 Oct 18:57:19 2016 live.8.indexIds
-rw------- 1 root wheel 6274098506 27 Oct 10:27:05 2016 live.8.indexPositions
-rw------- 1 root wheel 944151937 27 Oct 10:27:05 2016 live.8.indexPostings
-rw------- 1 root wheel 22 27 Oct 10:27:11 2016 live.8.indexUpdates
-rw------- 1 root wheel 27083 2 Nov 16:19:02 2016 live.8.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:02 2016 live.8.shadowIndexHead
-rw------- 1 root wheel 65536 2 Nov 17:30:12 2016 live.9.directoryStoreFile
-rw------- 1 root wheel 1088 1 Nov 20:19:50 2016 live.9.directoryStoreFile.shadow
-rw------- 1 root wheel 64 2 Nov 16:19:04 2016 live.9.indexArrays
-rw------- 1 root wheel 8 2 Nov 16:19:04 2016 live.9.indexCompactDirectory
-rw------- 1 root wheel 2056 2 Nov 16:19:04 2016 live.9.indexDirectory
-rw------- 1 root wheel 3277 2 Nov 14:09:29 2016 live.9.indexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:07 2016 live.9.indexHead
-rw------- 1 root wheel 8 2 Nov 16:19:04 2016 live.9.indexIds
-rw------- 1 root wheel 8 2 Nov 16:19:04 2016 live.9.indexPositionTable
-rw------- 1 root wheel 4096 2 Nov 14:09:29 2016 live.9.indexPositions
-rw------- 1 root wheel 4096 2 Nov 14:09:29 2016 live.9.indexPostings
-rw------- 1 root wheel 8 2 Nov 16:19:04 2016 live.9.indexTermIds
-rw------- 1 root wheel 0 1 Nov 20:19:56 2016 live.9.indexUpdates
-rw------- 1 root wheel 1 2 Nov 16:19:04 2016 live.9.shadowIndexGroups
-rw------- 1 root wheel 4096 2 Nov 16:19:04 2016 live.9.shadowIndexHead
-rw------- 1 root wheel 1821 1 Nov 07:27:10 2016 mds64-crash-state
-rw------- 1 root wheel 602172 2 Nov 17:30:25 2016 permStore
-rw------- 1 root wheel 134217728 2 Nov 17:30:06 2016 reverseDirectoryStore
-rw------- 1 root wheel 125173760 2 Nov 16:21:01 2016 reverseDirectoryStore.shadow
-rw------- 1 root wheel 122 2 Nov 17:04:55 2016 reverseStore.updates
-rw-r--r-- 1 root wheel 4 2 Nov 06:22:00 2016 shutdown_time
-rw------- 1 root wheel 689065984 2 Nov 17:04:55 2016 store.db
-rw------- 1 root wheel 3 2 Nov 17:04:55 2016 store.updates
-rw-r--r-- 1 root wheel 4 24 Aug 11:06:12 2016 store_generation
-rw------- 1 root wheel 0 24 Aug 11:06:11 2016 tmp.Cab
-rw------- 1 root wheel 0 24 Aug 11:06:11 2016 tmp.Lion
-rw------- 1 root wheel 0 24 Aug 11:06:11 2016 tmp.SnowLeopard
-rw------- 1 root wheel 65536 2 Nov 17:31:14 2016 tmp.merge.0.directoryStoreFile
-rw------- 1 root wheel 65536 2 Nov 17:31:14 2016 tmp.merge.0.indexArrays
-rw------- 1 root wheel 1024 2 Nov 17:31:14 2016 tmp.merge.0.indexCompactDirectory
-rw------- 1 root wheel 8224 2 Nov 17:31:14 2016 tmp.merge.0.indexDirectory
-rw------- 1 root wheel 838861 2 Nov 17:31:29 2016 tmp.merge.0.indexGroups
-rw------- 1 root wheel 0 2 Nov 17:31:14 2016 tmp.merge.0.indexHead
-rw------- 1 root wheel 8388608 2 Nov 17:31:29 2016 tmp.merge.0.indexIds
-rw------- 1 root wheel 67108864 2 Nov 17:31:28 2016 tmp.merge.0.indexPositionTable
-rw------- 1 root wheel 19347329024 2 Nov 17:42:32 2016 tmp.merge.0.indexPositions
-rw------- 1 root wheel 2864160768 2 Nov 17:42:32 2016 tmp.merge.0.indexPostings
-rw------- 1 root wheel 67108864 2 Nov 17:31:28 2016 tmp.merge.0.indexTermIds
-rw------- 1 root wheel 0 2 Nov 17:31:14 2016 tmp.merge.0.indexUpdates
-rw------- 1 root wheel 693945 2 Nov 16:17:24 2016 tmp.spotlight.loc
-rw------- 1 root wheel 4096 2 Nov 17:30:25 2016 tmp.spotlight.state