forked from keflavich/configfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_unique_history
8806 lines (8804 loc) · 341 KB
/
.bash_unique_history
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
output_name=outdir+"compare_exp12_v1v2",in1='v1',in2='v2',/samescale,wcsaperture='--wcsaperture=0,0,1000,1500',cuts='2.0',vmin=-1,$
vmax=5
compare_images,emptyplaceholder,prefix2=v2dir+v2fn,prefix1=outmap,suffix2="_map20.fits",suffix1="_map20.fits",$
compare_images,outmap+"_scandir1",cuts='0.02,0.1,0.5',wcsaperture='--wcsaperture=0,0,800,1600',point=0,title=title,/samescale,vmin=-1,vmax=5
compare_images,outmap+"_scandir2",cuts='0.02,0.1,0.5',wcsaperture='--wcsaperture=0,0,800,1600',point=0,title=title,/samescale,vmin=-1,vmax=5
compare_images,outmap,cuts='0.02,0.1,0.5',wcsaperture='--wcsaperture=0,0,800,1600',point=0,title=title,/samescale,vmin=-1,vmax=5
./configure --dialect=ecl
svn co svn://kokadjo.caltech.edu/clouds --username $USER
svn co svn://kokadjo.caltech.edu/clouds --username ginsburg
cd ~/Downloads/pytowerdefense0.5
hg add alma/spectraltype/
hg commit
hg push
hg up
hgpush
hgup
l../*;
rm -r G19.15/
svn up
svnup
"
# mail [-EiInv] [-s subject] [-c cc-addr] [-b bcc-addr] [-F] to-addr ... [-sendmail-option ...]
# Print the ASCII Color Table
# find the root of the virtualenv, it should be the parent of the dir this script is in
# now run Python with the virtualenv set as Python's HOME
# pyspeckit proc/W51_nearbystar_30s_merged.fits --
# what real Python executable to use
#!/bin/sh
############################################################
#autopep8 ukidss.py
#ds9 /Users/adam/work/w51/W51_brgfits.fits -region load
#ds9 w51_bieging_12co32.fits h2co_integ.fits
#git clone git://github.com/keflavich/specutils.git
#git clone [email protected]:keflavich/specutils.git
#git remote add origin [email protected]:keflavich/ASTR2600_materials
#git rm -r astrodata
#montage *_backsub_brg.fits --outfile "BrG_montage_tspec.fits" --header header.hdr --tmpdrive tmpD/
#mv ~/Downloads/arrow.scm /Applications/Gimp.app/Contents/Resources/
#mv ~/Downloads/nph-im 2massJ_g10.fits
#open docs/_build/html/ukidss.html
#scp $eta:$PWD/
#scp $eta:/Volumes/disk2/data/bgps/releases/v2.0/maps/herschelcompare/herschel_*txt .
#scp $eta:/Volumes/disk3/adam_work/l000/v2.0*_map20.fits
#scp .vim/svndiff_helper.py $arlsrv2:
$ python setup.py --long-description | rst2html.py > /dev/null
%run ~/work//pyspeckit/pyspeckit/spectrum/parinfo.py
. /star/etc/profile
. ~/.bashrc
. ~/.colors
../configure --enable-languages=c
../configure --with-arch=x86_64 --enable-shared
./autogen.sh && ./configure
./build/scripts-2.7/astrodendro-viewer
./configure
./configure
./configure --enable-framework
./configure --enable-perlinterp --enable-pythoninterp --enable-cscope --with-features=huge
./configure --enable-perlinterp --enable-pythoninterp --enable-cscope --with-features=huge
./configure --enable-perlinterp --enable-pythoninterp --enable-cscope --with-features=huge --with-arch=i386
./configure --enable-perlinterp --enable-pythoninterp --enable-cscope --with-features=huge --with-mac-arch=intel
./configure --enable-perlinterp --enable-pythoninterp --enable-cscope --with-features=huge --with-tlib=/usr/lib/libncurses.5.4.dylib
./configure --enable-perlinterp --enable-pythoninterp --enable-cscope --with-features=huge --with-tlib=ncurses
./configure --enable-perlinterp --enable-pythoninterp --enable-rubyinterp --enable-cscope --with-features=huge
./configure --enable-python
./configure --enable-pythoninterp
./configure --enable-pythoninterp --enable-cscope
./configure --enable-pythoninterp --enable-cscope --with-features=huge
./configure --enable-shared --enable-mpi --enable-threads
./configure --help
./configure --help | grep ncurses
./configure --with-arch=x86_64 --enable-shared
./configure --with-gcc-dir=/Users/adam/repos/gcc-4.0.3/g95/
./configure --with-gcc-dir=/usr/local
./configure --with-gcc-dir=/usr/local/lib/gcc
./configure --with-gcc-dir=/usr/local/lib/gcc/x86_64-apple-darwin11.0.0/
./configure --with-tlib=ncurses
./configure --with-zlib=/usr/local --prefix=/usr/local --enable-fortran
./configure -with-zlib=/usr/local -prefix=/usr/local -enable-fortran
./configure ?with-zlib=/usr/local ?prefix=/usr/local ?enable-fortran
./configure; make -j 4
./ds9 /Users/adam/work/bolocam/v2.0_orionAspine_13pca_map20.fits &
./getscript.sh
./getscriptold.sh
./install
./install-sh
./install.sh
./install_idl.sh
./ipython
./ipython-wx
./macvim-skim-install.sh
./src/vim
./src/vim --version
./tex2page
/Applications/CASA.app/Contents//Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python
/Applications/CASA.app/Contents//Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python -c "import matplotlib"
/Applications/CASA.app/Contents//Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python -c "import sys; print '\n'.join(sys.path)"
/Applications/CASA.app/Contents//Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python -c "import sys; print sys.path"
/Applications/CASA.app/Contents//Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python setup.py install
/Applications/Gimp.app/Contents/MacOS/Gimp
/Applications/Gimp.app/Contents/MacOS/Gimp UCHII_insideoutcollapse_scenario2_spectra.xcf
/Applications/Gimp.app/Contents/MacOS/Gimp UCHII_insideoutcollapse_scenario2_spectra.xcf &
/Applications/Skim.app/Contents/MacOS/Skim adamcomments_P2042_Jet.pdf
/Applications/Skim.app/Contents/MacOS/Skim ms.pdf
/Applications/Skim.app/Contents/MacOS/Skim ms.pdf &
/Applications/Skim.app/Contents/SharedSupport/
/Applications/Skim.app/Contents/SharedSupport/displayline
/Applications/Skim.app/Contents/SharedSupport/displayline
/Applications/Skim.app/Contents/SharedSupport/displayline -r 146 Assignment\ 3.pdf
/Applications/Skim.app/Contents/SharedSupport/displayline 0 ms.pdf
/Applications/Skim.app/Contents/SharedSupport/skimnotes
/Applications/Skim.app/Contents/SharedSupport/skimpdf ms.pdf
/Applications/exelis/idl82/lib/graphics/plot.pro
/Applications/itt/idl/idl/bin/lmhostid
/Applications/itt/idl/idl81/bin/idl
/Applications/itt/idl70/bin/idldemo
/Applications/itt/idl706/bin/idl
/Applications/itt/idl706/bin/idl ~/.idl/idlrc /Users/adam/work/bolocam/.idl_startup_bgps.pro
/Developer//Library/uninstall-devtools
/Developer/usr/bin/g++ --version
/Developer/usr/bin/gcc
/Developer/usr/bin/gcc
/Developer/usr/bin/gcc --version
/Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/easy_install -U pyspeckit
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/easy_install pip
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/easy_install pyspeckit
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/easy_install-2.7 pyspeckit
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/pip
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/pip install pyspeckit
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/python
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/python -c "import matplotlib; print matplotlib.__version__"
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/python -c "import mayavi"
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/python -c "import pyspeckit"
/Library/Frameworks/EPD64.framework/Versions/7.2/bin/python setup.py install
/Library/Frameworks/Python.Framework/Versions/2.7/bin/pip install ipython
/Library/Frameworks/Python.Framework/Versions/2.7/bin/python
/Library/Frameworks/Python.Framework/Versions/2.7/bin/python -c "import os"
/Library/Frameworks/Python.Framework/Versions/2.7/bin/python -c "import os; print os.path.abspath(os.path.join(os.path.dirname(\"$0\"), '..'))"
/Library/Frameworks/Python.Framework/Versions/2.7/bin/python -c #!/bin/bash
/Library/Frameworks/Python.Framework/Versions/2.7/bin/python setup.py install
/Library/Frameworks/Python.Framework/Versions/2.7/bin/virtualenv ~/virtual-python/
/Library/Frameworks/Python.Framework/Versions/7.1/bin/ipython
/Library/Frameworks/Python.Framework/Versions/7.1/bin/python setup.py install
/Library/Frameworks/Python.framework/Versions/2.7/bin/ipython
/Library/Frameworks/Python.framework/Versions/2.7/bin/ipythonx
/Library/Frameworks/Python.framework/Versions/2.7/bin/ipythonx\
/Library/Frameworks/Python.framework/Versions/2.7/bin/pip setuptools
/Library/Frameworks/Python.framework/Versions/2.7/bin/python -c "import hggit"
/Library/Frameworks/Python.framework/Versions/2.7/bin/python setup.py install
/Library/Frameworks/Python.framework/Versions/7.1/bin/python -c "import numpy,matplotlib,matplotlib.pyplot; matplotlib.pyplot.plot([0,1]); matplotlib.pyplot.show()"
/Library/Frameworks/Python.framework/Versions/7.1/bin/python -c "import numpy,matplotlib,matplotlib.pyplot; matplotlib.pyplot.plot([0,1]); matplotlib.pyplot.show(); import sys; print sys.maxint"
/Users/adam/Downloads/android-sdk-macosx/tools/emulator
/Users/adam/Downloads/android-sdk-macosx/tools/emulator ; exit;
/Users/adam/agpy/agpy/pstopng ; exit;
/Users/adam/repos/sphinx/sphinx-apidoc.py
/Users/adam/repos/sphinx/sphinx-apidoc.py --dest-dir=/Users/adam/agpy/autodoc/ /Users/adam/work/agpy/
/Users/adam/repos/sphinx/sphinx-apidoc.py --o /Users/adam/agpy/autodoc/ /Users/adam/agpy
/Users/adam/repos/sphinx/sphinx-apidoc.py --o /Users/adam/agpy/autodoc/ /Users/adam/work/agpy/
/Users/adam/repos/sphinx/sphinx-apidoc.py /Users/adam/work/agpy
/Users/adam/repos/sphinx/sphinx-apidoc.py /Users/adam/work/agpy --dest-dir=/Users/adam/agpy/autodoc/
/Users/adam/repos/sphinx/sphinx-apidoc.py /Users/adam/work/agpy -d ~/agpy/autodoc/
/Users/adam/repos/sphinx/sphinx-apidoc.py /Users/adam/work/agpy /Users/adam/agpy/autodoc/
/Users/adam/repos/sphinx/sphinx-apidoc.py /Users/adam/work/agpy ~/agpy/autodoc/
/_sw/bin/pdflatex Ginsburg2011_h2co_newsletter.tex
/opt/gtk/bin/pygtk-demo
/swp
/usr/bin/gcc
/usr/bin/osascript 'tell app "Preview" to activate'
/usr/bin/osascript 'tell application "Preview" to activate'
/usr/bin/osascript -e 'tell application "Preview.app" to open "'$PWD/$*'"'
/usr/bin/osascript -e 'tell application "Preview.app" to open "/Users/adam/work/BoundHII/v09_obsbranch/ms.pdf"'
/usr/bin/osascript -e 'tell application "Preview.app" to open "ms.pdf"'
/usr/bin/osascript empty trash
/usr/bin/osascript empty trsh
/usr/bin/scp $eta:~/.vimrc .vimrc.eta
/usr/bin/ssh -vXY [email protected]
/usr/bin/svn --version
/usr/bin/svn up
/usr/bin/vi
/usr/local/bin/g77 -g -Wall -L/usr/lib build/temp.macosx-10.6-intel-2.7/cephes/i0.o build/temp.macosx-10.6-intel-2.7/cephes/c2f.o build/temp.macosx-10.6-intel-2.7/cephes/chbevl.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/pymc/flibmodule.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/fortranobject.o build/temp.macosx-10.6-intel-2.7/pymc/flib.o build/temp.macosx-10.6-intel-2.7/pymc/histogram.o build/temp.macosx-10.6-intel-2.7/pymc/flib_blas.o build/temp.macosx-10.6-intel-2.7/pymc/blas_wrap.o build/temp.macosx-10.6-intel-2.7/pymc/math.o build/temp.macosx-10.6-intel-2.7/pymc/gibbsit.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/pymc/flib-f2pywrappers.o -L/usr/local/lib/gcc/i686-apple-darwin8.8.1/3.4.0 -lg2c -lcc_dynamic -o build/lib.macosx-10.6-intel-2.7/pymc/flib.so -Wl,-framework -Wl,Accelerate
/usr/local/bin/g77 -g -Wall -L/usr/lib build/temp.macosx-10.6-intel-2.7/cephes/i0.o build/temp.macosx-10.6-intel-2.7/cephes/c2f.o build/temp.macosx-10.6-intel-2.7/cephes/chbevl.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/pymc/flibmodule.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/fortranobject.o build/temp.macosx-10.6-intel-2.7/pymc/flib.o build/temp.macosx-10.6-intel-2.7/pymc/histogram.o build/temp.macosx-10.6-intel-2.7/pymc/flib_blas.o build/temp.macosx-10.6-intel-2.7/pymc/blas_wrap.o build/temp.macosx-10.6-intel-2.7/pymc/math.o build/temp.macosx-10.6-intel-2.7/pymc/gibbsit.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/pymc/flib-f2pywrappers.o -L/usr/local/lib/gcc/i686-apple-darwin8.8.1/3.4.0 -lg2c -o build/lib.macosx-10.6-intel-2.7/pymc/flib.so -Wl,-framework -Wl,Accelerate
/usr/local/bin/g77 -g -Wall -g -Wall -undefined dynamic_lookup -bundle build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/pymc/flibmodule.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/fortranobject.o build/temp.macosx-10.6-intel-2.7/pymc/flib.o build/temp.macosx-10.6-intel-2.7/pymc/histogram.o build/temp.macosx-10.6-intel-2.7/pymc/flib_blas.o build/temp.macosx-10.6-intel-2.7/pymc/math.o build/temp.macosx-10.6-intel-2.7/pymc/gibbsit.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/pymc/flib-f2pywrappers.o -L/usr/local/lib/gcc/i686-apple-darwin8.8.1/3.4.0 -lg2c -lcc_dynamic -o build/lib.macosx-10.6-intel-2.7/pymc/flib.so -Wl,-framework -Wl,Accelerate
/usr/local/bin/g77 -g -Wall -g -Wall -undefined dynamic_lookup -bundle build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/slalibmodule.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/fortranobject.o build/temp.macosx-10.6-intel-2.7/addet.o build/temp.macosx-10.6-intel-2.7/afin.o build/temp.macosx-10.6-intel-2.7/airmas.o build/temp.macosx-10.6-intel-2.7/altaz.o build/temp.macosx-10.6-intel-2.7/amp.o build/temp.macosx-10.6-intel-2.7/ampqk.o build/temp.macosx-10.6-intel-2.7/aop.o build/temp.macosx-10.6-intel-2.7/aoppa.o build/temp.macosx-10.6-intel-2.7/aoppat.o build/temp.macosx-10.6-intel-2.7/aopqk.o build/temp.macosx-10.6-intel-2.7/atmdsp.o build/temp.macosx-10.6-intel-2.7/atms.o build/temp.macosx-10.6-intel-2.7/atmt.o build/temp.macosx-10.6-intel-2.7/av2m.o build/temp.macosx-10.6-intel-2.7/bear.o build/temp.macosx-10.6-intel-2.7/caf2r.o build/temp.macosx-10.6-intel-2.7/caldj.o build/temp.macosx-10.6-intel-2.7/calyd.o build/temp.macosx-10.6-intel-2.7/cc2s.o build/temp.macosx-10.6-intel-2.7/cc62s.o build/temp.macosx-10.6-intel-2.7/cd2tf.o build/temp.macosx-10.6-intel-2.7/cldj.o build/temp.macosx-10.6-intel-2.7/clyd.o build/temp.macosx-10.6-intel-2.7/combn.o build/temp.macosx-10.6-intel-2.7/cr2af.o build/temp.macosx-10.6-intel-2.7/cr2tf.o build/temp.macosx-10.6-intel-2.7/cs2c.o build/temp.macosx-10.6-intel-2.7/cs2c6.o build/temp.macosx-10.6-intel-2.7/ctf2d.o build/temp.macosx-10.6-intel-2.7/ctf2r.o build/temp.macosx-10.6-intel-2.7/daf2r.o build/temp.macosx-10.6-intel-2.7/dafin.o build/temp.macosx-10.6-intel-2.7/dat.o build/temp.macosx-10.6-intel-2.7/dav2m.o build/temp.macosx-10.6-intel-2.7/dbear.o build/temp.macosx-10.6-intel-2.7/dbjin.o build/temp.macosx-10.6-intel-2.7/dc62s.o build/temp.macosx-10.6-intel-2.7/dcc2s.o build/temp.macosx-10.6-intel-2.7/dcmpf.o build/temp.macosx-10.6-intel-2.7/dcs2c.o build/temp.macosx-10.6-intel-2.7/dd2tf.o build/temp.macosx-10.6-intel-2.7/de2h.o build/temp.macosx-10.6-intel-2.7/deuler.o build/temp.macosx-10.6-intel-2.7/dfltin.o build/temp.macosx-10.6-intel-2.7/dh2e.o build/temp.macosx-10.6-intel-2.7/dimxv.o build/temp.macosx-10.6-intel-2.7/djcal.o build/temp.macosx-10.6-intel-2.7/djcl.o build/temp.macosx-10.6-intel-2.7/dm2av.o build/temp.macosx-10.6-intel-2.7/dmat.o build/temp.macosx-10.6-intel-2.7/dmoon.o build/temp.macosx-10.6-intel-2.7/dmxm.o build/temp.macosx-10.6-intel-2.7/dmxv.o build/temp.macosx-10.6-intel-2.7/dpav.o build/temp.macosx-10.6-intel-2.7/dr2af.o build/temp.macosx-10.6-intel-2.7/dr2tf.o build/temp.macosx-10.6-intel-2.7/drange.o build/temp.macosx-10.6-intel-2.7/dranrm.o build/temp.macosx-10.6-intel-2.7/ds2c6.o build/temp.macosx-10.6-intel-2.7/ds2tp.o build/temp.macosx-10.6-intel-2.7/dsep.o build/temp.macosx-10.6-intel-2.7/dsepv.o build/temp.macosx-10.6-intel-2.7/dt.o build/temp.macosx-10.6-intel-2.7/dtf2d.o build/temp.macosx-10.6-intel-2.7/dtf2r.o build/temp.macosx-10.6-intel-2.7/dtp2s.o build/temp.macosx-10.6-intel-2.7/dtp2v.o build/temp.macosx-10.6-intel-2.7/dtps2c.o build/temp.macosx-10.6-intel-2.7/dtpv2c.o build/temp.macosx-10.6-intel-2.7/dtt.o build/temp.macosx-10.6-intel-2.7/dv2tp.o build/temp.macosx-10.6-intel-2.7/dvdv.o build/temp.macosx-10.6-intel-2.7/dvn.o build/temp.macosx-10.6-intel-2.7/dvxv.o build/temp.macosx-10.6-intel-2.7/e2h.o build/temp.macosx-10.6-intel-2.7/earth.o build/temp.macosx-10.6-intel-2.7/ecleq.o build/temp.macosx-10.6-intel-2.7/ecmat.o build/temp.macosx-10.6-intel-2.7/ecor.o build/temp.macosx-10.6-intel-2.7/eg50.o build/temp.macosx-10.6-intel-2.7/el2ue.o build/temp.macosx-10.6-intel-2.7/epb.o build/temp.macosx-10.6-intel-2.7/epb2d.o build/temp.macosx-10.6-intel-2.7/epco.o build/temp.macosx-10.6-intel-2.7/epj.o build/temp.macosx-10.6-intel-2.7/epj2d.o build/temp.macosx-10.6-intel-2.7/epv.o build/temp.macosx-10.6-intel-2.7/eqecl.o build/temp.macosx-10.6-intel-2.7/eqeqx.o build/temp.macosx-10.6-intel-2.7/eqgal.o build/temp.macosx-10.6-intel-2.7/etrms.o build/temp.macosx-10.6-intel-2.7/euler.o build/temp.macosx-10.6-intel-2.7/evp.o build/temp.macosx-10.6-intel-2.7/fitxy.o build/temp.macosx-10.6-intel-2.7/fk425.o build/temp.macosx-10.6-intel-2.7/fk45z.o build/temp.macosx-10.6-intel-2.7/fk524.o build/temp.macosx-10.6-intel-2.7/fk52h.o build/temp.macosx-10.6-intel-2.7/fk54z.o build/temp.macosx-10.6-intel-2.7/fk5hz.o build/temp.macosx-10.6-intel-2.7/flotin.o build/temp.macosx-10.6-intel-2.7/galeq.o build/temp.macosx-10.6-intel-2.7/galsup.o build/temp.macosx-10.6-intel-2.7/ge50.o build/temp.macosx-10.6-intel-2.7/geoc.o build/temp.macosx-10.6-intel-2.7/gmst.o build/temp.macosx-10.6-intel-2.7/gmsta.o build/temp.macosx-10.6-intel-2.7/h2e.o build/temp.macosx-10.6-intel-2.7/h2fk5.o build/temp.macosx-10.6-intel-2.7/hfk5z.o build/temp.macosx-10.6-intel-2.7/idchf.o build/temp.macosx-10.6-intel-2.7/idchi.o build/temp.macosx-10.6-intel-2.7/imxv.o build/temp.macosx-10.6-intel-2.7/intin.o build/temp.macosx-10.6-intel-2.7/invf.o build/temp.macosx-10.6-intel-2.7/kbj.o build/temp.macosx-10.6-intel-2.7/m2av.o build/temp.macosx-10.6-intel-2.7/map.o build/temp.macosx-10.6-intel-2.7/mappa.o build/temp.macosx-10.6-intel-2.7/mapqk.o build/temp.macosx-10.6-intel-2.7/mapqkz.o build/temp.macosx-10.6-intel-2.7/moon.o build/temp.macosx-10.6-intel-2.7/mxm.o build/temp.macosx-10.6-intel-2.7/mxv.o build/temp.macosx-10.6-intel-2.7/nut.o build/temp.macosx-10.6-intel-2.7/nutc.o build/temp.macosx-10.6-intel-2.7/nutc80.o build/temp.macosx-10.6-intel-2.7/oap.o build/temp.macosx-10.6-intel-2.7/oapqk.o build/temp.macosx-10.6-intel-2.7/obs.o build/temp.macosx-10.6-intel-2.7/pa.o build/temp.macosx-10.6-intel-2.7/pav.o build/temp.macosx-10.6-intel-2.7/pcd.o build/temp.macosx-10.6-intel-2.7/pda2h.o build/temp.macosx-10.6-intel-2.7/pdq2h.o build/temp.macosx-10.6-intel-2.7/permut.o build/temp.macosx-10.6-intel-2.7/pertel.o build/temp.macosx-10.6-intel-2.7/pertue.o build/temp.macosx-10.6-intel-2.7/planel.o build/temp.macosx-10.6-intel-2.7/planet.o build/temp.macosx-10.6-intel-2.7/plante.o build/temp.macosx-10.6-intel-2.7/plantu.o build/temp.macosx-10.6-intel-2.7/pm.o build/temp.macosx-10.6-intel-2.7/polmo.o build/temp.macosx-10.6-intel-2.7/prebn.o build/temp.macosx-10.6-intel-2.7/prec.o build/temp.macosx-10.6-intel-2.7/preces.o build/temp.macosx-10.6-intel-2.7/precl.o build/temp.macosx-10.6-intel-2.7/prenut.o build/temp.macosx-10.6-intel-2.7/pv2el.o build/temp.macosx-10.6-intel-2.7/pv2ue.o build/temp.macosx-10.6-intel-2.7/pvobs.o build/temp.macosx-10.6-intel-2.7/pxy.o build/temp.macosx-10.6-intel-2.7/range.o build/temp.macosx-10.6-intel-2.7/ranorm.o build/temp.macosx-10.6-intel-2.7/rcc.o build/temp.macosx-10.6-intel-2.7/rdplan.o build/temp.macosx-10.6-intel-2.7/refco.o build/temp.macosx-10.6-intel-2.7/refcoq.o build/temp.macosx-10.6-intel-2.7/refro.o build/temp.macosx-10.6-intel-2.7/refv.o build/temp.macosx-10.6-intel-2.7/refz.o build/temp.macosx-10.6-intel-2.7/rverot.o build/temp.macosx-10.6-intel-2.7/rvgalc.o build/temp.macosx-10.6-intel-2.7/rvlg.o build/temp.macosx-10.6-intel-2.7/rvlsrd.o build/temp.macosx-10.6-intel-2.7/rvlsrk.o build/temp.macosx-10.6-intel-2.7/s2tp.o build/temp.macosx-10.6-intel-2.7/sep.o build/temp.macosx-10.6-intel-2.7/sepv.o build/temp.macosx-10.6-intel-2.7/smat.o build/temp.macosx-10.6-intel-2.7/subet.o build/temp.macosx-10.6-intel-2.7/supgal.o build/temp.macosx-10.6-intel-2.7/svd.o build/temp.macosx-10.6-intel-2.7/svdcov.o build/temp.macosx-10.6-intel-2.7/svdsol.o build/temp.macosx-10.6-intel-2.7/tp2s.o build/temp.macosx-10.6-intel-2.7/tp2v.o build/temp.macosx-10.6-intel-2.7/tps2c.o build/temp.macosx-10.6-intel-2.7/tpv2c.o build/temp.macosx-10.6-intel-2.7/ue2el.o build/temp.macosx-10.6-intel-2.7/ue2pv.o build/temp.macosx-10.6-intel-2.7/unpcd.o build/temp.macosx-10.6-intel-2.7/v2tp.o build/temp.macosx-10.6-intel-2.7/vdv.o build/temp.macosx-10.6-intel-2.7/veri.o build/temp.macosx-10.6-intel-2.7/vers.o build/temp.macosx-10.6-intel-2.7/vn.o build/temp.macosx-10.6-intel-2.7/vxv.o build/temp.macosx-10.6-intel-2.7/wait.o build/temp.macosx-10.6-intel-2.7/xy2xy.o build/temp.macosx-10.6-intel-2.7/zd.o build/temp.macosx-10.6-intel-2.7/gresid.o build/temp.macosx-10.6-intel-2.7/random.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/slalib-f2pywrap
/usr/local/bin/g77 -g -Wall -g -Wall -undefined dynamic_lookup -bundle build/temp.macosx-10.7-intel-2.7/build/src.macosx-10.7-intel-2.7/slalibmodule.o build/temp.macosx-10.7-intel-2.7/build/src.macosx-10.7-intel-2.7/fortranobject.o build/temp.macosx-10.7-intel-2.7/addet.o build/temp.macosx-10.7-intel-2.7/afin.o build/temp.macosx-10.7-intel-2.7/airmas.o build/temp.macosx-10.7-intel-2.7/altaz.o build/temp.macosx-10.7-intel-2.7/amp.o build/temp.macosx-10.7-intel-2.7/ampqk.o build/temp.macosx-10.7-intel-2.7/aop.o build/temp.macosx-10.7-intel-2.7/aoppa.o build/temp.macosx-10.7-intel-2.7/aoppat.o build/temp.macosx-10.7-intel-2.7/aopqk.o build/temp.macosx-10.7-intel-2.7/atmdsp.o build/temp.macosx-10.7-intel-2.7/atms.o build/temp.macosx-10.7-intel-2.7/atmt.o build/temp.macosx-10.7-intel-2.7/av2m.o build/temp.macosx-10.7-intel-2.7/bear.o build/temp.macosx-10.7-intel-2.7/caf2r.o build/temp.macosx-10.7-intel-2.7/caldj.o build/temp.macosx-10.7-intel-2.7/calyd.o build/temp.macosx-10.7-intel-2.7/cc2s.o build/temp.macosx-10.7-intel-2.7/cc62s.o build/temp.macosx-10.7-intel-2.7/cd2tf.o build/temp.macosx-10.7-intel-2.7/cldj.o build/temp.macosx-10.7-intel-2.7/clyd.o build/temp.macosx-10.7-intel-2.7/combn.o build/temp.macosx-10.7-intel-2.7/cr2af.o build/temp.macosx-10.7-intel-2.7/cr2tf.o build/temp.macosx-10.7-intel-2.7/cs2c.o build/temp.macosx-10.7-intel-2.7/cs2c6.o build/temp.macosx-10.7-intel-2.7/ctf2d.o build/temp.macosx-10.7-intel-2.7/ctf2r.o build/temp.macosx-10.7-intel-2.7/daf2r.o build/temp.macosx-10.7-intel-2.7/dafin.o build/temp.macosx-10.7-intel-2.7/dat.o build/temp.macosx-10.7-intel-2.7/dav2m.o build/temp.macosx-10.7-intel-2.7/dbear.o build/temp.macosx-10.7-intel-2.7/dbjin.o build/temp.macosx-10.7-intel-2.7/dc62s.o build/temp.macosx-10.7-intel-2.7/dcc2s.o build/temp.macosx-10.7-intel-2.7/dcmpf.o build/temp.macosx-10.7-intel-2.7/dcs2c.o build/temp.macosx-10.7-intel-2.7/dd2tf.o build/temp.macosx-10.7-intel-2.7/de2h.o build/temp.macosx-10.7-intel-2.7/deuler.o build/temp.macosx-10.7-intel-2.7/dfltin.o build/temp.macosx-10.7-intel-2.7/dh2e.o build/temp.macosx-10.7-intel-2.7/dimxv.o build/temp.macosx-10.7-intel-2.7/djcal.o build/temp.macosx-10.7-intel-2.7/djcl.o build/temp.macosx-10.7-intel-2.7/dm2av.o build/temp.macosx-10.7-intel-2.7/dmat.o build/temp.macosx-10.7-intel-2.7/dmoon.o build/temp.macosx-10.7-intel-2.7/dmxm.o build/temp.macosx-10.7-intel-2.7/dmxv.o build/temp.macosx-10.7-intel-2.7/dpav.o build/temp.macosx-10.7-intel-2.7/dr2af.o build/temp.macosx-10.7-intel-2.7/dr2tf.o build/temp.macosx-10.7-intel-2.7/drange.o build/temp.macosx-10.7-intel-2.7/dranrm.o build/temp.macosx-10.7-intel-2.7/ds2c6.o build/temp.macosx-10.7-intel-2.7/ds2tp.o build/temp.macosx-10.7-intel-2.7/dsep.o build/temp.macosx-10.7-intel-2.7/dsepv.o build/temp.macosx-10.7-intel-2.7/dt.o build/temp.macosx-10.7-intel-2.7/dtf2d.o build/temp.macosx-10.7-intel-2.7/dtf2r.o build/temp.macosx-10.7-intel-2.7/dtp2s.o build/temp.macosx-10.7-intel-2.7/dtp2v.o build/temp.macosx-10.7-intel-2.7/dtps2c.o build/temp.macosx-10.7-intel-2.7/dtpv2c.o build/temp.macosx-10.7-intel-2.7/dtt.o build/temp.macosx-10.7-intel-2.7/dv2tp.o build/temp.macosx-10.7-intel-2.7/dvdv.o build/temp.macosx-10.7-intel-2.7/dvn.o build/temp.macosx-10.7-intel-2.7/dvxv.o build/temp.macosx-10.7-intel-2.7/e2h.o build/temp.macosx-10.7-intel-2.7/earth.o build/temp.macosx-10.7-intel-2.7/ecleq.o build/temp.macosx-10.7-intel-2.7/ecmat.o build/temp.macosx-10.7-intel-2.7/ecor.o build/temp.macosx-10.7-intel-2.7/eg50.o build/temp.macosx-10.7-intel-2.7/el2ue.o build/temp.macosx-10.7-intel-2.7/epb.o build/temp.macosx-10.7-intel-2.7/epb2d.o build/temp.macosx-10.7-intel-2.7/epco.o build/temp.macosx-10.7-intel-2.7/epj.o build/temp.macosx-10.7-intel-2.7/epj2d.o build/temp.macosx-10.7-intel-2.7/epv.o build/temp.macosx-10.7-intel-2.7/eqecl.o build/temp.macosx-10.7-intel-2.7/eqeqx.o build/temp.macosx-10.7-intel-2.7/eqgal.o build/temp.macosx-10.7-intel-2.7/etrms.o build/temp.macosx-10.7-intel-2.7/euler.o build/temp.macosx-10.7-intel-2.7/evp.o build/temp.macosx-10.7-intel-2.7/fitxy.o build/temp.macosx-10.7-intel-2.7/fk425.o build/temp.macosx-10.7-intel-2.7/fk45z.o build/temp.macosx-10.7-intel-2.7/fk524.o build/temp.macosx-10.7-intel-2.7/fk52h.o build/temp.macosx-10.7-intel-2.7/fk54z.o build/temp.macosx-10.7-intel-2.7/fk5hz.o build/temp.macosx-10.7-intel-2.7/flotin.o build/temp.macosx-10.7-intel-2.7/galeq.o build/temp.macosx-10.7-intel-2.7/galsup.o build/temp.macosx-10.7-intel-2.7/ge50.o build/temp.macosx-10.7-intel-2.7/geoc.o build/temp.macosx-10.7-intel-2.7/gmst.o build/temp.macosx-10.7-intel-2.7/gmsta.o build/temp.macosx-10.7-intel-2.7/h2e.o build/temp.macosx-10.7-intel-2.7/h2fk5.o build/temp.macosx-10.7-intel-2.7/hfk5z.o build/temp.macosx-10.7-intel-2.7/idchf.o build/temp.macosx-10.7-intel-2.7/idchi.o build/temp.macosx-10.7-intel-2.7/imxv.o build/temp.macosx-10.7-intel-2.7/intin.o build/temp.macosx-10.7-intel-2.7/invf.o build/temp.macosx-10.7-intel-2.7/kbj.o build/temp.macosx-10.7-intel-2.7/m2av.o build/temp.macosx-10.7-intel-2.7/map.o build/temp.macosx-10.7-intel-2.7/mappa.o build/temp.macosx-10.7-intel-2.7/mapqk.o build/temp.macosx-10.7-intel-2.7/mapqkz.o build/temp.macosx-10.7-intel-2.7/moon.o build/temp.macosx-10.7-intel-2.7/mxm.o build/temp.macosx-10.7-intel-2.7/mxv.o build/temp.macosx-10.7-intel-2.7/nut.o build/temp.macosx-10.7-intel-2.7/nutc.o build/temp.macosx-10.7-intel-2.7/nutc80.o build/temp.macosx-10.7-intel-2.7/oap.o build/temp.macosx-10.7-intel-2.7/oapqk.o build/temp.macosx-10.7-intel-2.7/obs.o build/temp.macosx-10.7-intel-2.7/pa.o build/temp.macosx-10.7-intel-2.7/pav.o build/temp.macosx-10.7-intel-2.7/pcd.o build/temp.macosx-10.7-intel-2.7/pda2h.o build/temp.macosx-10.7-intel-2.7/pdq2h.o build/temp.macosx-10.7-intel-2.7/permut.o build/temp.macosx-10.7-intel-2.7/pertel.o build/temp.macosx-10.7-intel-2.7/pertue.o build/temp.macosx-10.7-intel-2.7/planel.o build/temp.macosx-10.7-intel-2.7/planet.o build/temp.macosx-10.7-intel-2.7/plante.o build/temp.macosx-10.7-intel-2.7/plantu.o build/temp.macosx-10.7-intel-2.7/pm.o build/temp.macosx-10.7-intel-2.7/polmo.o build/temp.macosx-10.7-intel-2.7/prebn.o build/temp.macosx-10.7-intel-2.7/prec.o build/temp.macosx-10.7-intel-2.7/preces.o build/temp.macosx-10.7-intel-2.7/precl.o build/temp.macosx-10.7-intel-2.7/prenut.o build/temp.macosx-10.7-intel-2.7/pv2el.o build/temp.macosx-10.7-intel-2.7/pv2ue.o build/temp.macosx-10.7-intel-2.7/pvobs.o build/temp.macosx-10.7-intel-2.7/pxy.o build/temp.macosx-10.7-intel-2.7/range.o build/temp.macosx-10.7-intel-2.7/ranorm.o build/temp.macosx-10.7-intel-2.7/rcc.o build/temp.macosx-10.7-intel-2.7/rdplan.o build/temp.macosx-10.7-intel-2.7/refco.o build/temp.macosx-10.7-intel-2.7/refcoq.o build/temp.macosx-10.7-intel-2.7/refro.o build/temp.macosx-10.7-intel-2.7/refv.o build/temp.macosx-10.7-intel-2.7/refz.o build/temp.macosx-10.7-intel-2.7/rverot.o build/temp.macosx-10.7-intel-2.7/rvgalc.o build/temp.macosx-10.7-intel-2.7/rvlg.o build/temp.macosx-10.7-intel-2.7/rvlsrd.o build/temp.macosx-10.7-intel-2.7/rvlsrk.o build/temp.macosx-10.7-intel-2.7/s2tp.o build/temp.macosx-10.7-intel-2.7/sep.o build/temp.macosx-10.7-intel-2.7/sepv.o build/temp.macosx-10.7-intel-2.7/smat.o build/temp.macosx-10.7-intel-2.7/subet.o build/temp.macosx-10.7-intel-2.7/supgal.o build/temp.macosx-10.7-intel-2.7/svd.o build/temp.macosx-10.7-intel-2.7/svdcov.o build/temp.macosx-10.7-intel-2.7/svdsol.o build/temp.macosx-10.7-intel-2.7/tp2s.o build/temp.macosx-10.7-intel-2.7/tp2v.o build/temp.macosx-10.7-intel-2.7/tps2c.o build/temp.macosx-10.7-intel-2.7/tpv2c.o build/temp.macosx-10.7-intel-2.7/ue2el.o build/temp.macosx-10.7-intel-2.7/ue2pv.o build/temp.macosx-10.7-intel-2.7/unpcd.o build/temp.macosx-10.7-intel-2.7/v2tp.o build/temp.macosx-10.7-intel-2.7/vdv.o build/temp.macosx-10.7-intel-2.7/veri.o build/temp.macosx-10.7-intel-2.7/vers.o build/temp.macosx-10.7-intel-2.7/vn.o build/temp.macosx-10.7-intel-2.7/vxv.o build/temp.macosx-10.7-intel-2.7/wait.o build/temp.macosx-10.7-intel-2.7/xy2xy.o build/temp.macosx-10.7-intel-2.7/zd.o build/temp.macosx-10.7-intel-2.7/gresid.o build/temp.macosx-10.7-intel-2.7/random.o build/temp.macosx-10.7-intel-2.7/build/src.macosx-10.7-intel-2.7/slalib-f2pywrap
/usr/local/bin/gcc
/usr/local/bin/gcc
/usr/local/bin/gcc --version
/usr/local/bin/gem --version
/usr/local/bin/gfortran -O2 -fPIC -g -Wall -g -Wall -undefined dynamic_lookup -bundle build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/slalibmodule.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/fortranobject.o build/temp.macosx-10.6-intel-2.7/addet.o build/temp.macosx-10.6-intel-2.7/afin.o build/temp.macosx-10.6-intel-2.7/airmas.o build/temp.macosx-10.6-intel-2.7/altaz.o build/temp.macosx-10.6-intel-2.7/amp.o build/temp.macosx-10.6-intel-2.7/ampqk.o build/temp.macosx-10.6-intel-2.7/aop.o build/temp.macosx-10.6-intel-2.7/aoppa.o build/temp.macosx-10.6-intel-2.7/aoppat.o build/temp.macosx-10.6-intel-2.7/aopqk.o build/temp.macosx-10.6-intel-2.7/atmdsp.o build/temp.macosx-10.6-intel-2.7/atms.o build/temp.macosx-10.6-intel-2.7/atmt.o build/temp.macosx-10.6-intel-2.7/av2m.o build/temp.macosx-10.6-intel-2.7/bear.o build/temp.macosx-10.6-intel-2.7/caf2r.o build/temp.macosx-10.6-intel-2.7/caldj.o build/temp.macosx-10.6-intel-2.7/calyd.o build/temp.macosx-10.6-intel-2.7/cc2s.o build/temp.macosx-10.6-intel-2.7/cc62s.o build/temp.macosx-10.6-intel-2.7/cd2tf.o build/temp.macosx-10.6-intel-2.7/cldj.o build/temp.macosx-10.6-intel-2.7/clyd.o build/temp.macosx-10.6-intel-2.7/combn.o build/temp.macosx-10.6-intel-2.7/cr2af.o build/temp.macosx-10.6-intel-2.7/cr2tf.o build/temp.macosx-10.6-intel-2.7/cs2c.o build/temp.macosx-10.6-intel-2.7/cs2c6.o build/temp.macosx-10.6-intel-2.7/ctf2d.o build/temp.macosx-10.6-intel-2.7/ctf2r.o build/temp.macosx-10.6-intel-2.7/daf2r.o build/temp.macosx-10.6-intel-2.7/dafin.o build/temp.macosx-10.6-intel-2.7/dat.o build/temp.macosx-10.6-intel-2.7/dav2m.o build/temp.macosx-10.6-intel-2.7/dbear.o build/temp.macosx-10.6-intel-2.7/dbjin.o build/temp.macosx-10.6-intel-2.7/dc62s.o build/temp.macosx-10.6-intel-2.7/dcc2s.o build/temp.macosx-10.6-intel-2.7/dcmpf.o build/temp.macosx-10.6-intel-2.7/dcs2c.o build/temp.macosx-10.6-intel-2.7/dd2tf.o build/temp.macosx-10.6-intel-2.7/de2h.o build/temp.macosx-10.6-intel-2.7/deuler.o build/temp.macosx-10.6-intel-2.7/dfltin.o build/temp.macosx-10.6-intel-2.7/dh2e.o build/temp.macosx-10.6-intel-2.7/dimxv.o build/temp.macosx-10.6-intel-2.7/djcal.o build/temp.macosx-10.6-intel-2.7/djcl.o build/temp.macosx-10.6-intel-2.7/dm2av.o build/temp.macosx-10.6-intel-2.7/dmat.o build/temp.macosx-10.6-intel-2.7/dmoon.o build/temp.macosx-10.6-intel-2.7/dmxm.o build/temp.macosx-10.6-intel-2.7/dmxv.o build/temp.macosx-10.6-intel-2.7/dpav.o build/temp.macosx-10.6-intel-2.7/dr2af.o build/temp.macosx-10.6-intel-2.7/dr2tf.o build/temp.macosx-10.6-intel-2.7/drange.o build/temp.macosx-10.6-intel-2.7/dranrm.o build/temp.macosx-10.6-intel-2.7/ds2c6.o build/temp.macosx-10.6-intel-2.7/ds2tp.o build/temp.macosx-10.6-intel-2.7/dsep.o build/temp.macosx-10.6-intel-2.7/dsepv.o build/temp.macosx-10.6-intel-2.7/dt.o build/temp.macosx-10.6-intel-2.7/dtf2d.o build/temp.macosx-10.6-intel-2.7/dtf2r.o build/temp.macosx-10.6-intel-2.7/dtp2s.o build/temp.macosx-10.6-intel-2.7/dtp2v.o build/temp.macosx-10.6-intel-2.7/dtps2c.o build/temp.macosx-10.6-intel-2.7/dtpv2c.o build/temp.macosx-10.6-intel-2.7/dtt.o build/temp.macosx-10.6-intel-2.7/dv2tp.o build/temp.macosx-10.6-intel-2.7/dvdv.o build/temp.macosx-10.6-intel-2.7/dvn.o build/temp.macosx-10.6-intel-2.7/dvxv.o build/temp.macosx-10.6-intel-2.7/e2h.o build/temp.macosx-10.6-intel-2.7/earth.o build/temp.macosx-10.6-intel-2.7/ecleq.o build/temp.macosx-10.6-intel-2.7/ecmat.o build/temp.macosx-10.6-intel-2.7/ecor.o build/temp.macosx-10.6-intel-2.7/eg50.o build/temp.macosx-10.6-intel-2.7/el2ue.o build/temp.macosx-10.6-intel-2.7/epb.o build/temp.macosx-10.6-intel-2.7/epb2d.o build/temp.macosx-10.6-intel-2.7/epco.o build/temp.macosx-10.6-intel-2.7/epj.o build/temp.macosx-10.6-intel-2.7/epj2d.o build/temp.macosx-10.6-intel-2.7/epv.o build/temp.macosx-10.6-intel-2.7/eqecl.o build/temp.macosx-10.6-intel-2.7/eqeqx.o build/temp.macosx-10.6-intel-2.7/eqgal.o build/temp.macosx-10.6-intel-2.7/etrms.o build/temp.macosx-10.6-intel-2.7/euler.o build/temp.macosx-10.6-intel-2.7/evp.o build/temp.macosx-10.6-intel-2.7/fitxy.o build/temp.macosx-10.6-intel-2.7/fk425.o build/temp.macosx-10.6-intel-2.7/fk45z.o build/temp.macosx-10.6-intel-2.7/fk524.o build/temp.macosx-10.6-intel-2.7/fk52h.o build/temp.macosx-10.6-intel-2.7/fk54z.o build/temp.macosx-10.6-intel-2.7/fk5hz.o build/temp.macosx-10.6-intel-2.7/flotin.o build/temp.macosx-10.6-intel-2.7/galeq.o build/temp.macosx-10.6-intel-2.7/galsup.o build/temp.macosx-10.6-intel-2.7/ge50.o build/temp.macosx-10.6-intel-2.7/geoc.o build/temp.macosx-10.6-intel-2.7/gmst.o build/temp.macosx-10.6-intel-2.7/gmsta.o build/temp.macosx-10.6-intel-2.7/h2e.o build/temp.macosx-10.6-intel-2.7/h2fk5.o build/temp.macosx-10.6-intel-2.7/hfk5z.o build/temp.macosx-10.6-intel-2.7/idchf.o build/temp.macosx-10.6-intel-2.7/idchi.o build/temp.macosx-10.6-intel-2.7/imxv.o build/temp.macosx-10.6-intel-2.7/intin.o build/temp.macosx-10.6-intel-2.7/invf.o build/temp.macosx-10.6-intel-2.7/kbj.o build/temp.macosx-10.6-intel-2.7/m2av.o build/temp.macosx-10.6-intel-2.7/map.o build/temp.macosx-10.6-intel-2.7/mappa.o build/temp.macosx-10.6-intel-2.7/mapqk.o build/temp.macosx-10.6-intel-2.7/mapqkz.o build/temp.macosx-10.6-intel-2.7/moon.o build/temp.macosx-10.6-intel-2.7/mxm.o build/temp.macosx-10.6-intel-2.7/mxv.o build/temp.macosx-10.6-intel-2.7/nut.o build/temp.macosx-10.6-intel-2.7/nutc.o build/temp.macosx-10.6-intel-2.7/nutc80.o build/temp.macosx-10.6-intel-2.7/oap.o build/temp.macosx-10.6-intel-2.7/oapqk.o build/temp.macosx-10.6-intel-2.7/obs.o build/temp.macosx-10.6-intel-2.7/pa.o build/temp.macosx-10.6-intel-2.7/pav.o build/temp.macosx-10.6-intel-2.7/pcd.o build/temp.macosx-10.6-intel-2.7/pda2h.o build/temp.macosx-10.6-intel-2.7/pdq2h.o build/temp.macosx-10.6-intel-2.7/permut.o build/temp.macosx-10.6-intel-2.7/pertel.o build/temp.macosx-10.6-intel-2.7/pertue.o build/temp.macosx-10.6-intel-2.7/planel.o build/temp.macosx-10.6-intel-2.7/planet.o build/temp.macosx-10.6-intel-2.7/plante.o build/temp.macosx-10.6-intel-2.7/plantu.o build/temp.macosx-10.6-intel-2.7/pm.o build/temp.macosx-10.6-intel-2.7/polmo.o build/temp.macosx-10.6-intel-2.7/prebn.o build/temp.macosx-10.6-intel-2.7/prec.o build/temp.macosx-10.6-intel-2.7/preces.o build/temp.macosx-10.6-intel-2.7/precl.o build/temp.macosx-10.6-intel-2.7/prenut.o build/temp.macosx-10.6-intel-2.7/pv2el.o build/temp.macosx-10.6-intel-2.7/pv2ue.o build/temp.macosx-10.6-intel-2.7/pvobs.o build/temp.macosx-10.6-intel-2.7/pxy.o build/temp.macosx-10.6-intel-2.7/range.o build/temp.macosx-10.6-intel-2.7/ranorm.o build/temp.macosx-10.6-intel-2.7/rcc.o build/temp.macosx-10.6-intel-2.7/rdplan.o build/temp.macosx-10.6-intel-2.7/refco.o build/temp.macosx-10.6-intel-2.7/refcoq.o build/temp.macosx-10.6-intel-2.7/refro.o build/temp.macosx-10.6-intel-2.7/refv.o build/temp.macosx-10.6-intel-2.7/refz.o build/temp.macosx-10.6-intel-2.7/rverot.o build/temp.macosx-10.6-intel-2.7/rvgalc.o build/temp.macosx-10.6-intel-2.7/rvlg.o build/temp.macosx-10.6-intel-2.7/rvlsrd.o build/temp.macosx-10.6-intel-2.7/rvlsrk.o build/temp.macosx-10.6-intel-2.7/s2tp.o build/temp.macosx-10.6-intel-2.7/sep.o build/temp.macosx-10.6-intel-2.7/sepv.o build/temp.macosx-10.6-intel-2.7/smat.o build/temp.macosx-10.6-intel-2.7/subet.o build/temp.macosx-10.6-intel-2.7/supgal.o build/temp.macosx-10.6-intel-2.7/svd.o build/temp.macosx-10.6-intel-2.7/svdcov.o build/temp.macosx-10.6-intel-2.7/svdsol.o build/temp.macosx-10.6-intel-2.7/tp2s.o build/temp.macosx-10.6-intel-2.7/tp2v.o build/temp.macosx-10.6-intel-2.7/tps2c.o build/temp.macosx-10.6-intel-2.7/tpv2c.o build/temp.macosx-10.6-intel-2.7/ue2el.o build/temp.macosx-10.6-intel-2.7/ue2pv.o build/temp.macosx-10.6-intel-2.7/unpcd.o build/temp.macosx-10.6-intel-2.7/v2tp.o build/temp.macosx-10.6-intel-2.7/vdv.o build/temp.macosx-10.6-intel-2.7/veri.o build/temp.macosx-10.6-intel-2.7/vers.o build/temp.macosx-10.6-intel-2.7/vn.o build/temp.macosx-10.6-intel-2.7/vxv.o build/temp.macosx-10.6-intel-2.7/wait.o build/temp.macosx-10.6-intel-2.7/xy2xy.o build/temp.macosx-10.6-intel-2.7/zd.o build/temp.macosx-10.6-intel-2.7/gresid.o build/temp.macosx-10.6-intel-2.7/random.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/
/usr/local/bin/gfortran -g -Wall -g -Wall -undefined dynamic_lookup -bundle build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/slalibmodule.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/fortranobject.o build/temp.macosx-10.6-intel-2.7/addet.o build/temp.macosx-10.6-intel-2.7/afin.o build/temp.macosx-10.6-intel-2.7/airmas.o build/temp.macosx-10.6-intel-2.7/altaz.o build/temp.macosx-10.6-intel-2.7/amp.o build/temp.macosx-10.6-intel-2.7/ampqk.o build/temp.macosx-10.6-intel-2.7/aop.o build/temp.macosx-10.6-intel-2.7/aoppa.o build/temp.macosx-10.6-intel-2.7/aoppat.o build/temp.macosx-10.6-intel-2.7/aopqk.o build/temp.macosx-10.6-intel-2.7/atmdsp.o build/temp.macosx-10.6-intel-2.7/atms.o build/temp.macosx-10.6-intel-2.7/atmt.o build/temp.macosx-10.6-intel-2.7/av2m.o build/temp.macosx-10.6-intel-2.7/bear.o build/temp.macosx-10.6-intel-2.7/caf2r.o build/temp.macosx-10.6-intel-2.7/caldj.o build/temp.macosx-10.6-intel-2.7/calyd.o build/temp.macosx-10.6-intel-2.7/cc2s.o build/temp.macosx-10.6-intel-2.7/cc62s.o build/temp.macosx-10.6-intel-2.7/cd2tf.o build/temp.macosx-10.6-intel-2.7/cldj.o build/temp.macosx-10.6-intel-2.7/clyd.o build/temp.macosx-10.6-intel-2.7/combn.o build/temp.macosx-10.6-intel-2.7/cr2af.o build/temp.macosx-10.6-intel-2.7/cr2tf.o build/temp.macosx-10.6-intel-2.7/cs2c.o build/temp.macosx-10.6-intel-2.7/cs2c6.o build/temp.macosx-10.6-intel-2.7/ctf2d.o build/temp.macosx-10.6-intel-2.7/ctf2r.o build/temp.macosx-10.6-intel-2.7/daf2r.o build/temp.macosx-10.6-intel-2.7/dafin.o build/temp.macosx-10.6-intel-2.7/dat.o build/temp.macosx-10.6-intel-2.7/dav2m.o build/temp.macosx-10.6-intel-2.7/dbear.o build/temp.macosx-10.6-intel-2.7/dbjin.o build/temp.macosx-10.6-intel-2.7/dc62s.o build/temp.macosx-10.6-intel-2.7/dcc2s.o build/temp.macosx-10.6-intel-2.7/dcmpf.o build/temp.macosx-10.6-intel-2.7/dcs2c.o build/temp.macosx-10.6-intel-2.7/dd2tf.o build/temp.macosx-10.6-intel-2.7/de2h.o build/temp.macosx-10.6-intel-2.7/deuler.o build/temp.macosx-10.6-intel-2.7/dfltin.o build/temp.macosx-10.6-intel-2.7/dh2e.o build/temp.macosx-10.6-intel-2.7/dimxv.o build/temp.macosx-10.6-intel-2.7/djcal.o build/temp.macosx-10.6-intel-2.7/djcl.o build/temp.macosx-10.6-intel-2.7/dm2av.o build/temp.macosx-10.6-intel-2.7/dmat.o build/temp.macosx-10.6-intel-2.7/dmoon.o build/temp.macosx-10.6-intel-2.7/dmxm.o build/temp.macosx-10.6-intel-2.7/dmxv.o build/temp.macosx-10.6-intel-2.7/dpav.o build/temp.macosx-10.6-intel-2.7/dr2af.o build/temp.macosx-10.6-intel-2.7/dr2tf.o build/temp.macosx-10.6-intel-2.7/drange.o build/temp.macosx-10.6-intel-2.7/dranrm.o build/temp.macosx-10.6-intel-2.7/ds2c6.o build/temp.macosx-10.6-intel-2.7/ds2tp.o build/temp.macosx-10.6-intel-2.7/dsep.o build/temp.macosx-10.6-intel-2.7/dsepv.o build/temp.macosx-10.6-intel-2.7/dt.o build/temp.macosx-10.6-intel-2.7/dtf2d.o build/temp.macosx-10.6-intel-2.7/dtf2r.o build/temp.macosx-10.6-intel-2.7/dtp2s.o build/temp.macosx-10.6-intel-2.7/dtp2v.o build/temp.macosx-10.6-intel-2.7/dtps2c.o build/temp.macosx-10.6-intel-2.7/dtpv2c.o build/temp.macosx-10.6-intel-2.7/dtt.o build/temp.macosx-10.6-intel-2.7/dv2tp.o build/temp.macosx-10.6-intel-2.7/dvdv.o build/temp.macosx-10.6-intel-2.7/dvn.o build/temp.macosx-10.6-intel-2.7/dvxv.o build/temp.macosx-10.6-intel-2.7/e2h.o build/temp.macosx-10.6-intel-2.7/earth.o build/temp.macosx-10.6-intel-2.7/ecleq.o build/temp.macosx-10.6-intel-2.7/ecmat.o build/temp.macosx-10.6-intel-2.7/ecor.o build/temp.macosx-10.6-intel-2.7/eg50.o build/temp.macosx-10.6-intel-2.7/el2ue.o build/temp.macosx-10.6-intel-2.7/epb.o build/temp.macosx-10.6-intel-2.7/epb2d.o build/temp.macosx-10.6-intel-2.7/epco.o build/temp.macosx-10.6-intel-2.7/epj.o build/temp.macosx-10.6-intel-2.7/epj2d.o build/temp.macosx-10.6-intel-2.7/epv.o build/temp.macosx-10.6-intel-2.7/eqecl.o build/temp.macosx-10.6-intel-2.7/eqeqx.o build/temp.macosx-10.6-intel-2.7/eqgal.o build/temp.macosx-10.6-intel-2.7/etrms.o build/temp.macosx-10.6-intel-2.7/euler.o build/temp.macosx-10.6-intel-2.7/evp.o build/temp.macosx-10.6-intel-2.7/fitxy.o build/temp.macosx-10.6-intel-2.7/fk425.o build/temp.macosx-10.6-intel-2.7/fk45z.o build/temp.macosx-10.6-intel-2.7/fk524.o build/temp.macosx-10.6-intel-2.7/fk52h.o build/temp.macosx-10.6-intel-2.7/fk54z.o build/temp.macosx-10.6-intel-2.7/fk5hz.o build/temp.macosx-10.6-intel-2.7/flotin.o build/temp.macosx-10.6-intel-2.7/galeq.o build/temp.macosx-10.6-intel-2.7/galsup.o build/temp.macosx-10.6-intel-2.7/ge50.o build/temp.macosx-10.6-intel-2.7/geoc.o build/temp.macosx-10.6-intel-2.7/gmst.o build/temp.macosx-10.6-intel-2.7/gmsta.o build/temp.macosx-10.6-intel-2.7/h2e.o build/temp.macosx-10.6-intel-2.7/h2fk5.o build/temp.macosx-10.6-intel-2.7/hfk5z.o build/temp.macosx-10.6-intel-2.7/idchf.o build/temp.macosx-10.6-intel-2.7/idchi.o build/temp.macosx-10.6-intel-2.7/imxv.o build/temp.macosx-10.6-intel-2.7/intin.o build/temp.macosx-10.6-intel-2.7/invf.o build/temp.macosx-10.6-intel-2.7/kbj.o build/temp.macosx-10.6-intel-2.7/m2av.o build/temp.macosx-10.6-intel-2.7/map.o build/temp.macosx-10.6-intel-2.7/mappa.o build/temp.macosx-10.6-intel-2.7/mapqk.o build/temp.macosx-10.6-intel-2.7/mapqkz.o build/temp.macosx-10.6-intel-2.7/moon.o build/temp.macosx-10.6-intel-2.7/mxm.o build/temp.macosx-10.6-intel-2.7/mxv.o build/temp.macosx-10.6-intel-2.7/nut.o build/temp.macosx-10.6-intel-2.7/nutc.o build/temp.macosx-10.6-intel-2.7/nutc80.o build/temp.macosx-10.6-intel-2.7/oap.o build/temp.macosx-10.6-intel-2.7/oapqk.o build/temp.macosx-10.6-intel-2.7/obs.o build/temp.macosx-10.6-intel-2.7/pa.o build/temp.macosx-10.6-intel-2.7/pav.o build/temp.macosx-10.6-intel-2.7/pcd.o build/temp.macosx-10.6-intel-2.7/pda2h.o build/temp.macosx-10.6-intel-2.7/pdq2h.o build/temp.macosx-10.6-intel-2.7/permut.o build/temp.macosx-10.6-intel-2.7/pertel.o build/temp.macosx-10.6-intel-2.7/pertue.o build/temp.macosx-10.6-intel-2.7/planel.o build/temp.macosx-10.6-intel-2.7/planet.o build/temp.macosx-10.6-intel-2.7/plante.o build/temp.macosx-10.6-intel-2.7/plantu.o build/temp.macosx-10.6-intel-2.7/pm.o build/temp.macosx-10.6-intel-2.7/polmo.o build/temp.macosx-10.6-intel-2.7/prebn.o build/temp.macosx-10.6-intel-2.7/prec.o build/temp.macosx-10.6-intel-2.7/preces.o build/temp.macosx-10.6-intel-2.7/precl.o build/temp.macosx-10.6-intel-2.7/prenut.o build/temp.macosx-10.6-intel-2.7/pv2el.o build/temp.macosx-10.6-intel-2.7/pv2ue.o build/temp.macosx-10.6-intel-2.7/pvobs.o build/temp.macosx-10.6-intel-2.7/pxy.o build/temp.macosx-10.6-intel-2.7/range.o build/temp.macosx-10.6-intel-2.7/ranorm.o build/temp.macosx-10.6-intel-2.7/rcc.o build/temp.macosx-10.6-intel-2.7/rdplan.o build/temp.macosx-10.6-intel-2.7/refco.o build/temp.macosx-10.6-intel-2.7/refcoq.o build/temp.macosx-10.6-intel-2.7/refro.o build/temp.macosx-10.6-intel-2.7/refv.o build/temp.macosx-10.6-intel-2.7/refz.o build/temp.macosx-10.6-intel-2.7/rverot.o build/temp.macosx-10.6-intel-2.7/rvgalc.o build/temp.macosx-10.6-intel-2.7/rvlg.o build/temp.macosx-10.6-intel-2.7/rvlsrd.o build/temp.macosx-10.6-intel-2.7/rvlsrk.o build/temp.macosx-10.6-intel-2.7/s2tp.o build/temp.macosx-10.6-intel-2.7/sep.o build/temp.macosx-10.6-intel-2.7/sepv.o build/temp.macosx-10.6-intel-2.7/smat.o build/temp.macosx-10.6-intel-2.7/subet.o build/temp.macosx-10.6-intel-2.7/supgal.o build/temp.macosx-10.6-intel-2.7/svd.o build/temp.macosx-10.6-intel-2.7/svdcov.o build/temp.macosx-10.6-intel-2.7/svdsol.o build/temp.macosx-10.6-intel-2.7/tp2s.o build/temp.macosx-10.6-intel-2.7/tp2v.o build/temp.macosx-10.6-intel-2.7/tps2c.o build/temp.macosx-10.6-intel-2.7/tpv2c.o build/temp.macosx-10.6-intel-2.7/ue2el.o build/temp.macosx-10.6-intel-2.7/ue2pv.o build/temp.macosx-10.6-intel-2.7/unpcd.o build/temp.macosx-10.6-intel-2.7/v2tp.o build/temp.macosx-10.6-intel-2.7/vdv.o build/temp.macosx-10.6-intel-2.7/veri.o build/temp.macosx-10.6-intel-2.7/vers.o build/temp.macosx-10.6-intel-2.7/vn.o build/temp.macosx-10.6-intel-2.7/vxv.o build/temp.macosx-10.6-intel-2.7/wait.o build/temp.macosx-10.6-intel-2.7/xy2xy.o build/temp.macosx-10.6-intel-2.7/zd.o build/temp.macosx-10.6-intel-2.7/gresid.o build/temp.macosx-10.6-intel-2.7/random.o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/slalib-f2p
/usr/local/bin/gfortran-4.2
/usr/local/bin/python
/usr/local/bin/python -c "import wx"
/usr/local/itt/idl/idl81/bin/idl
/usr/texbin
/usr/texbin/pdflatex -halt-on-error ms.tex
2007ARA&A..45..481Z"
:
:q
:set
;2A
;s
?
ARCHFLAGS="-arch i386 -arch x86_64" ~/virtual-python/bin/python setup.py install
CC=/usr/bin/gcc
CFLAGS="-arch i386 -arch x86_64" FFLAGS="-m32 -m64" LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch i386 -arch x86_64" MACOSX_DEPLOYMENT_TARGET=10.6 PYTHONPATH="/Users/adam/virtual-python/lib/python2.7/site-packages/" ~/virtual-python/bin/python2.7 setup.py build
CFLAGS="-arch i386 -arch x86_64" FFLAGS="-m32 -m64" LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch i386 -arch x86_64" MACOSX_DEPLOYMENT_TARGET=10.6 make
CFLAGS="-arch i386 -arch x86_64" FFLAGS="-m32 -m64" LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch i386 -arch x86_64" MACOSX_DEPLOYMENT_TARGET=10.6 python setup.py build --fcompiler=gnu95
CFLAGS="-arch i386 -arch x86_64" FFLAGS="-m32 -m64" LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch i386 -arch x86_64" MACOSX_DEPLOYMENT_TARGET=10.7 PYTHONPATH="/Users/adam/virtual-python/lib/python2.7/site-packages/" ~/virtual-python/bin/python2.7 setup.py build
CFLAGS="-arch i386 -arch x86_64" FFLAGS="-m32 -m64" LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch i386 -arch x86_64" MACOSX_DEPLOYMENT_TARGET=10.7 PYTHONPATH="/Users/adam/virtual-python/lib/python2.7/site-packages/" ~/virtual-python/bin/python2.7 setup.py build --fcompiler=gnu95
CFLAGS="-arch x86_64" FFLAGS="-m32 -m64" LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch i386 -arch x86_64" MACOSX_DEPLOYMENT_TARGET=10.6 make
D
Developer//Library/uninstall-devtools
ENV=""
ENV=`$PYTHON -c "import os; print os.path.abspath(os.path.join(os.path.dirname(\"$0\"), '..'))"`
GetFileInfo House\ MD\ Season\ 5\ Episode\ 14\ -\ The\ Greater\ Good.avi
HPC
LDFLAGS=-L/usr/lib CFLAGS='-arch i386 -arch x86_64' CCFLAGS='-arch i386 -arch x86_64' CXXFLAGS='-arch i386 -arch x86_64'
LDFLAGS=-L/usr/lib CFLAGS='-arch i386 -arch x86_64' CCFLAGS='-arch i386 -arch x86_64' CXXFLAGS='-arch i386 -arch x86_64' ./configure --enable-perlinterp --enable-pythoninterp --enable-cscope --with-features=huge
LDFLAGS=-L/usr/lib CFLAGS='-arch i386 -arch x86_64' CCFLAGS='-arch i386 -arch x86_64' CXXFLAGS='-arch i386 -arch x86_64' python setup.py install
Ls -lhrt
PATH=/Users/adam/.rvm/gems/ruby-1.9.2-p320/bin:/Users/adam/.rvm/gems/ruby-1.9.2-p320@global/bin:/Users/adam/.rvm/rubies/ruby-1.9.2-p320/bin:/Users/adam/.rvm/bin:/Users/adam/virtual-python/bin:/Library/Frameworks/Python.framework/Versions/2.7/bin/:/usr/local/bin:/usr/X11/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Developer/usr/bin/:/star/bin:/Users/adam/bin/:/Users/adam/repos/docbook-xsl-1.76.1/tools/bin:/usr/local/git/bin:/usr/local/MacGPG2/bin:/usr/texbin:/Library/Frameworks/GLib.framework/Resources/dev/bin/:/usr/local/itt/idl/idl81/bin/:/usr/stsci/wcstools-3.7.3/bin.macintel/:/usr/texbin/:/Users/adam/repos/apache-maven-3.0.4/bin
PATH=~/virtual-python/bin/:$PATH; pyspeckit --threed S233IR_H2CO11_cube_smooth.fits
PYTHON=""
PYTHON=/Library/Frameworks/Python.framework/Versions/$PYVER/bin/python$PYVER
PYTHONHOME=""
PYTHONPATH=/Applications/CASA.app/Contents/Resources/python:/Applications/CASA.app/Contents/Resources/python:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/MacOS:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat-mac:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat-darwin:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/MacOS/lib-scriptpackages:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-tk:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-dynload:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/Numeric:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/PyObjC:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python26.zip:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat-mac/lib-scriptpackages:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-old:/Users/adam/.local/lib/python2.6/site-packages:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/gtk-2.0:/Applications/CASA.app/Contents/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/IPython/Extensions:/Users/adam/.casa/ipython /Applications/CASA.app/Contents//Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python setup.py install
PYVER=""
PYVER=2.7
Pizza
SKim
SetFile
SetFile -t "MooV" *.avi
SetFile -t "MooV" -c "TVOD"
SetFile -t "MooV" -c "TVOD" "/Users/adam/Desktop/House/House MD Season 5 Episode 14 - The Greater Good.avi"
SetFile -t "MooV" House\ MD\ Season\ 5\ Episode\ 14\ -\ The\ Greater\ Good.avi
Skim
Skim adamcomments_P2042_Jet.pdf
VMAIL_VIM= vmail
VMAIL_VIM="" vmail
VMAIL_VIM=mvim vmail
VMAIL_VIM=mvim vmail
VMAIL_VIM=mvim vmail &
[
[ TRue ]
[ ]
[[ "yes" ]]
[[ 1 ]]
[]
`'
ack "'p'"
ack "'raise'"
ack "<<<<<"
ack "<<<<<<< "
ack "<<<<<<< \"
ack "<<<<<<<"
ack "Assigned source loc"
ack "FITS Files"
ack "Failed to import atpy
ack "Failed to import atpy"
ack "Fit Tools"
ack "Fits files"
ack "Left region"
ack "RA out of range"
ack "Sampling finished"
ack "Swapped endpoints"
ack "TO DO"
ack "To Do"
ack "To do"
ack "To o"
ack "WARNING: Blank"
ack "WARNING: You"
ack "WARNING: blank"
ack "WARNING: you
ack "WARNING: you"
ack "\.matplotlib"
ack "data.astropy.org"
ack "def "
ack "def components"
ack "def dftups"
ack "def integral"
ack "def moment"
ack "derived_fit_values"
ack "flagged nohits"
ack "get_spectra"
ack "import pyfits"
ack "no-hits"
ack "shape()"
ack "shape\(\)"
ack "to do"
ack '"raise"'
ack '======'
ack 'button_release_event'
ack 'raise'
ack --extension=rst ":py:"
ack --help
ack --thbbbbt
ack --thbbbt
ack --thbbbtt
ack --thbbt
ack --thbbtt
ack --thbtt
ack --thpppt
ack --type RST ref
ack --type TXT ref
ack --type python fourpar
ack --type python onepeakgaussfit
ack --type txt ref
ack --type-add rst=.rst
ack --type-set rst=.rst
ack --type-set=rst=.rst
ack --type-set=rst=.rst
ack --type=python "fittype='formaldehyde'"
ack --type=python "overplot_radexform"
ack --type=python "radexform"
ack --type=python 'fittype="formaldehyde"'
ack --type=python W51NS
ack --type=python downsample
ack --type=python interp
ack --type=python j1
ack --type=python pymc
ack --type=python raise
ack --type=python requires
ack --type=python requires=
ack --type=python sample
ack --type=python seterr
ack --type=rst ":py:"
ack --type=tex figure
ack -i :ref:
ack -i APOTSPECFLAT_CREATEFLAT
ack -i doppler
ack -i dotdict
ack -i lsr
ack -i sourcestruct
ack -u :mod:
ack -u :ref:
ack -w olde
ack .matplotlib
ack /Users/adam/virtual-python/lib/python2.7/site-packages/pyregion-1.1_git-py2.7-macosx-10.6-intel.egg/pyregion/ pyfits
ack 1218
ack 12183
ack 165029
ack 3.32002
ack 56406
ack 97269
ack ::get_new_fits_obj
ack ::set_file
ack :py:
ack :ref:
ack <<<<<<<
ack A1
ack A1 --type=python
ack Andromeda
ack Blank
ack Choose
ack Cntr
ack F5
ack G172
ack HDUList
ack HDUlist
ack HI1
ack LSR
ack M31
ack NavigationToolbar2
ack NeedsTeXFormat
ack OII
ack RASTER
ack Registry.add_fitter
ack Resetting
ack S233IR_h2co_radex_fitcube
ack S233_scale
ack Slider
ack SubplotTool
ack VerifyWarning
ack W51NS
ack WARNING:
ack \.16
ack \.165
ack \.166
ack \.167
ack \.matplotlib
ack __dict__
ack __version
ack _cntr
ack _disconnect_m
ack _fourpar
ack ad2xy
ack add_fitter
ack add_to_header
ack addnewpars
ack admin
ack analytics
ack arithmetic
ack attrdict
ack automodule
ack besancon
ack bx1
ack candidated.reg
ack casac
ack casac --type=python
ack choose
ack collapseplot
ack complet
ack components
ack composite_fit_color
ack concatenate
ack cross_correlt
ack dftups
ack divide
ack dotdick
ack dotdictify
ack downsample
ack err
ack example1a
ack example_1a
ack f5
ack fft_tools
ack figure
ack fileinfo
ack find_element
ack findstars
ack flagged_nohits
ack formaldehyde_model
ack fourpar
ack fwhm
ack gaussfitter
ack get_column_values
ack get_index_values
ack geterr
ack goodbolos
ack guesses
ack has_key
ack hatchell2009
ack hcn_amp
ack herschel_v1_offsets
ack higal500um
ack if_number
ack import
ack include
ack includemask
ack interpolate_lin
ack invalid
ack j1
ack jdcal
ack jfunc
ack kdist
ack l351
ack line_ids_from
ack line_ids_from_measurements
ack lineid
ack local
ack log
ack make_powerspec
ack make_powerspec_ratio
ack make_powerspec_ratio'
ack makecube
ack matplotlib
ack mirocha
ack moment
ack moments
ack mpfit_messages
ack multipeakgaussianslope
ack n2hp_oph
ack no_polysub
ack noexpsub
ack numpy
ack obsnums_scales
ack olde
ack onepeakgaussf
ack onepeakgaussfit
ack opendocx
ack optparse
ack param
ack parametr
ack parametrize
ack parinfo
ack plot
ack plot_special
ack pmfFormalde
ack png
ack predict_bolo_hot
ack progress
ack pyfits
ack pyfits /Users/adam/virtual-python/lib/python2.7/site-packages/pyregion-1.1_git-py2.7-macosx-10.6-intel.egg/pyregion/
ack pymc
ack pymodelfit
ack pywcs
ack radio
ack raise
ack ref
ack relsens_Cal
ack relsens_cal
ack relsens_cal_pca_
ack requires
ack requires:
ack requires=
ack requries=
ack restore_sampler
ack sample
ack scan_weights
ack scanspeed
ack sdss
ack seed
ack selectpolarization
ack seterr
ack sieve
ack simple_txt
ack simple_txt --type=py
ack simple_txt --type=python
ack sliders
ack smooth
ack sourcestruct
ack speclines
ack ssh
ack superres
ack table
ack table.tex
ack tabular
ack test
ack test_zoom
ack tip
ack toc
ack ukidss
ack units
ack unknown
ack unsharp
ack upload_file
ack upsample
ack use_lmfit
ack usefortran
ack version
ack voigt
ack warn
ack wofz
ack workingdir
ack write
ack xunits
ack xy2ad
ack zetac
adsbibdesk "
adsbibdesk "2007ARA&A..45..565M"
adsbibdesk "2010A&A...518L.102A"
adsbibdesk "2011A&A...532L...8L"
adsbibdesk "2012A&A...540A.113T"
adsbibdesk '2010A&A...518L.100M
adsbibdesk '2010A&A...518L.100M'
adsbibdesk '2010A&A...518L.103M'
adsbibdesk -p ./
adsbibdesk -p papers*/
adsbibdesk ./
adsbibdesk 2010A&A...518L.102A
adsbibdesk 2010A&A...518L.103M
adsbibdesk 2011A&A...532L...8L
adsbibdesk 2011ascl.soft09001G
adsbibdesk 2012A&A...540A.113T
alias HPC
alias epd_python
alias gbtidl
alias idl
alias ipython-wx="export PYTHONHOME=/Users/adam/virtual-python; ~/virtual-python/bin/ipython-wx"
alias ipython-wx="export PYTHONHOME=/Users/adam/virtual-python;"
alias ls
alias macvim
alias pylab
alias scp
alias spect
alias spectool
alias spectool
alias ssh_eta
alias ssh_origins
and fuck you
ant
ant gogui.app
ant gogui.app -Ddocbook-xsl.dir=/Users/adam/repos/docbook-xsl-1.76.1/
ant jars
aoidl
applesingle
apropos editor
apropos flush
apropos flush | less
apropos memory
apropos memory | less
aults_indiv_map20.png
autopep8 ukidss.py
ax1.fill_between(xx,xx*0,obs_curve,facecolor='white',edgecolor='none')
bash
bash < link_finders
bg
bgpsv1
bibtex current_research
bibtex cv
bibtex cv; pdflatex cv; bibtex cv; pdflatex cv; pdflatex cv
bibtex cv; pdflatex cv; bibtex cv; pdflatex cv; pdflatex cv; open cv.pdf
bibtex ms
bibtex sma_clumpstructure
bin/gem
bin/gem --version
bin/gem install iconv
blah
c misc
casapy
casapy
casapy setup.py install
cat
cat
cat *py
cat ../2011/password.txt
cat ../Makefile
cat ../image_registration/register_images.py
cat ../jansky/2012/Makefile
cat ../pyspeckit/REQUIREMENTS
cat ./pyspeckit/spectrum/tests/test_units.py
cat .ackrc
cat .git/config
cat .xinitrc
cat /Users/adam/Dropbox/triplespec_observing_q2_2012/reduction_script_0505.txt
cat /Users/adam/bin/macvim-load-line
cat /Users/adam/repos/aposoftware/observing_scripts/make_2mass_finders.py
cat /Users/adam/repos/specanpy/tests/test_fits.py
cat /Users/adam/virtual-python/lib/python2.7/site-packages/tornado/__init__.py
cat /Users/adam/work/ipython_log_2012-08-02.py
cat /var/folders/_r/c4nkvmpn4vx6qc91qygz8h740000gr/T/sphinx-err-72ULxe.log
cat /var/folders/_r/c4nkvmpn4vx6qc91qygz8h740000gr/T/tmp7XmQHQ
cat /var/folders/_r/c4nkvmpn4vx6qc91qygz8h740000gr/T/tmpCdgrrJ
cat /var/folders/_r/c4nkvmpn4vx6qc91qygz8h740000gr/T/tmpH_yqb9
cat /var/folders/_r/c4nkvmpn4vx6qc91qygz8h740000gr/T/tmpLjFb9O
cat /var/folders/_r/c4nkvmpn4vx6qc91qygz8h740000gr/T/tmpeNcifX
cat Assignment0.html | pandoc -s -f html -t latex -o Assignment0.tex
cat Assignment3.html | pandoc -s -f html -t latex -o 'Assignment3b.tex'
cat Classes/ASTR2600-ASTR2600-1/Unregistered_remotes.csv
cat GC02targets.reg
cat INSTAL
cat INSTALL
cat INSTALL
cat INSTALL/README
cat MANIFEST
cat Makefile
cat README
cat README
cat README.md
cat README.txt
cat README.txt
cat README_mac.txt
cat ROSTER
cat ReadMe cocd.dat > cocd.cds
cat SessionData/RemoteID.csv
cat Unregistered_remotes.csv
cat `which macvim-load-line`
cat apo_targetlist_cepheids.
cat apo_targetlist_cepheids.reg
cat apo_targetlist_cepheids.txt
cat astrodata/__init__.py
cat do_nods.py
cat examples/gbt_sdfits_example.py
cat hcn_
cat hcn_example.py
cat id_rsa.pub
cat ipy*
cat ipython_20120816.py
cat ipython_20120831.py
cat ipython_log_2012-08-31.py
cat ipython_pyspeckit_log_20120229.py
cat ipython_pyspeckit_log_20120229.py > plot_S233_interactive.py
cat itt_eula.txt
cat lib/__init__.py
cat link/doc/README
cat link/doc/example.py
cat measure_mean_flux.py
cat mopra_cubetest.py
cat pyspeckit/__init__.py
cat pyspeckit/spectrum/__init__.py
cat run_tests.py
cat svn-commit.tmp
cat temp.py
cat temp.py
cat template.tex
cat test_this_is_neat
cat tiny_anim.pro
cat tvcircle.pro
cat web
cat ~/.idl/idlrc
cat ~/.idlrc
cat ~/.inputrc
cat ~/.screenrc
cat ~/.screenrc
cat ~/.ssh/id_rsa.pub
cat ~/Desktop/smbc.js
cat ~/work/bolocam/.idl_startup_bgps.pro
cat ~/work/personal/ads_script.py
cat ~/work/w51/ipython_log_2012-08-05.py
cd
cd
cd /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/
cd ~/Dropbox/papers_journalclub/nh3/
cd ~/work/h2co/radex/troscompt_grid_March2012/
cd $PWD
cd '
cd -
cd .
cd ..
cd ..
cd ...
cd .../..
cd ../
cd ../..
cd ../../
cd ../../..
cd ../../../
cd ../../../codes
cd ../../../tests/
cd ../../BGPS_paper_v2
cd ../../Q2CU05/
cd ../../Q4CU05/UT101018/
cd ../../agpy
cd ../../aplpy.git/
cd ../../bolocam/
cd ../../cara/vla
cd ../../cfa/
cd ../../cycle0/etacar/
cd ../../cycle1/w51/
cd ../../doc
cd ../../docs/
cd ../../figures/
cd ../../gc/
cd ../../hubble/
cd ../../ncurses-5.9/
cd ../../outergal/
cd ../../outergal/code
cd ../../plotcode/
cd ../../proposals/
cd ../../pyregion
cd ../../repos/
cd ../../simulation/
cd ../../tests/
cd ../../work/conferences/
cd ../ASTR2600
cd ../ASTR2600-fork/
cd ../BoundHII/
cd ../Caches/
cd ../Dewey/
cd ../Downloads/
cd ../Dropbox/YMCP/figures/
cd ../Enigma/
cd ../ErfWorld
cd ../IRAS05358/
cd ../OrderOfTheStick/
cd ../PyFFTW3-0.2.1/
cd ../Q3CU05/
cd ../UT120827/
cd ../UT120903/
cd ../ads_bibdesk/
cd ../agpy
cd ../agpy/
cd ../alignment/
cd ../analysis/
cd ../aplpy
cd ../aplpy.git
cd ../aplpy.git/
cd ../aplpy.keflavich/
cd ../arecibo_observing/
cd ../assignments/
cd ../astrodata/
cd ../astrodendro/
cd ../astrolib
cd ../astrometry/
cd ../astropy
cd ../astropy.keflavich/
cd ../atpy
cd ../atpy.fork.git/
cd ../bgps_pipeline/
cd ../bolocam/
cd ../bolocam/distance/
cd ../bolocam/l030
cd ../bolocam/v2
cd ../bolocat/
cd ../car
cd ../cara
cd ../carma/
cd ../casa
cd ../casaradio/
cd ../catalogs
cd ../cepheid_distance/
cd ../champ/
cd ../class/
cd ../classes/
cd ../classes/astr3510_2011/
cd ../co
cd ../code
cd ../conferences
cd ../conferences/
cd ../cv
cd ../cv/
cd ../data/gbt/
cd ../data/tables/
cd ../devo
cd ../doc
cd ../doc/
cd ../etacar/
cd ../ets/
cd ../eulerproject/
cd ../examples/
cd ../exp12_simple/
cd ../fits
cd ../fuego-1.1/
cd ../gc
cd ../gc_egos/
cd ../gogui-1.4.2/
cd ../h2co/
cd ../h2co/grs-38-cube.fits
cd ../h2co/radex/grid_
cd ../h2co/radex/grid_greenscaled
cd ../hdf5-1.8.7
cd ../higal-gc/
cd ../higal_bgps_compare/
cd ../html/
cd ../hubble/
cd ../image_registration/FITS_tools/
cd ../ipython.git
cd ../jansky
cd ../l111.5n/
cd ../l111.5s
cd ../l111/
cd ../lbvs/
cd ../lectures/
cd ../mapping/
cd ../mapping_lists/INFILES/
cd ../matplotlib
cd ../matplotlib-0.99.1.1/
cd ../matplotlib-1.1.0/
cd ../matplotlib.git/
cd ../meetings
cd ../meetings/
cd ../ncurses-36/
cd ../ncurses-5.9/
cd ../nh3
cd ../nsfpostdoc2011/
cd ../numpy-1.6.1/
cd ../numpy.git/
cd ../observations/
cd ../outergal
cd ../paper_v2/
cd ../papers_statistics/
cd ../pcyg/
cd ../personal/
cd ../plotting/
cd ../private/
cd ../proposals/
cd ../pyfits-3.0.6
cd ../pym
cd ../pymc
cd ../pymc-2.0/
cd ../pyregion
cd ../pyregion-github/
cd ../pyregion.git/
cd ../pyregion.jjl/
cd ../pyregion.keflavich/
cd ../pyspec
cd ../pyspeckit
cd ../pyspeckit-models/
cd ../pyspeckit/spectrum/models/
cd ../pyspeckitp
cd ../pywcs-1.10-4.7/
cd ../pywcs-svn/
cd ../r
cd ../reading/
cd ../rep
cd ../repos/
cd ../repos/aplpy
cd ../repos/astrolib
cd ../repos/atpy.fork.git/
cd ../repos/curl-7.21.1/
cd ../repos/image_registration/
cd ../scripts/
cd ../scripts/simulations/
cd ../setuptools-0.6
cd ../simulations/
cd ../sn2009ip/
cd ../specutils.keflavich/
cd ../stellarev/
cd ../stftests/
cd ../students/
cd ../support/
cd ../tcam/UT120903/
cd ../tcam/UT120903/proc-t
cd ../test
cd ../tests
cd ../tests/
cd ../texmf/
cd ../ukidss/
cd ../ukidss_temp/
cd ../ukidss_temp/stack/K_gps2_m2_15.13_3.1_1/
cd ../v1
cd ../v1.0_bgps_pipeline/
cd ../v10_obsbranch/
cd ../v2
cd ../vim
cd ../vmail
cd ../vmail/
cd ../w51/
cd ../work/
cd ../work/bolocam/
cd ../work/pyspeckit
cd ../wrappers/
cd ../xpdf-3.03/
cd ../yt
cd .ipython
cd .vim
cd /
cd /Applications/
cd /Applications/Google\ Chrome.app/
cd /Applications/TUI.app/Contents/
cd /Library/
cd /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pyspeckit/
cd /Library/Scr
cd /Library/Script
cd /Library/Scripts/
cd /Library/WebServer/Documents/
cd /Users/adam//Library/Application\ Support/Google/Chrome/Default/Extensions/
cd /Users/adam/observations/Q2CU05/UT120628
cd /Users/adam/observations/Q3CU04/UT120827/proc
cd /Users/adam/observations/echelle_example/
cd /Users/adam/work/bolocam/adam_work/l351/
cd /Users/adam/work/h2co/data/large_session2/
cd /Users/adam/work/h2co/data/large_session2/G
cd /Volumes/Ginsburg/
cd /Volumes/Time\ Machine\ Backups/MyBook/My\ Pictures/comics/Goblins/
cd 0
cd 0-
cd 07-08/
cd 08-09/
cd 1.7_0/
cd 2012
cd 2012/
cd =-
cd AGBT12B_221_01/
cd AG_fft_tools/
cd AMMONIA_FITS/
cd APO/
cd ASTR2600
cd ASTR2600-fork/
cd Application\ Support/
cd Application\ Support/iTeXMac2/
cd Autosave\ Information/
cd Backup/
cd Barak/
cd BoundHII/
cd COS/
cd CSO
cd CSO/
cd CSO/fall09/
cd Caches/
cd Chrome/
cd Classes/ASTR2600-ASTR2600-1/
cd Default/Extensions/plcnnpdmhobdfbponjpedobekiogmbco/1.7_0/
cd Desktop/
cd Desktop/House/
cd Desktop/thewire/
cd Dewey/
cd Django-1.3.1/
cd Doc
cd Documents/
cd Documents/ErfWorld/
cd Documents/OrderOfTheStick/
cd Downloads/
cd Downloads/pyzmq/
cd Dropbox/YMCP/tex/v09_obsbranch/
cd Dropbox/YMCP/tex/v12_obsbranch_referee/
cd Dropbox/astr2600/
cd Dropbox/astr2600/Dewey/
cd Dropbox/astr2600/assignments/
cd Dropbox/astr2600/code/
cd Dropbox/astr2600/lectures/
cd Dropbox/triplespec_observing_q2_2012/
cd Enigma
cd G19.15/
cd G37.87-0.40
cd GTalk.keflavich\@gmail.com/
cd House/
cd INFILES/
cd ISM_seminar_2011/
cd JoshuaSebastian/
cd Lib/
cd Library/
cd Mail
cd MobileSync/
cd NGC7000/
cd OrderOfTheStick/
cd PyFFTW3-0.2.1/
cd Python-2.7.2/
cd Q2CU05/
cd Q2CU05/UT120505/
cd Q3CU0
cd Q3CU04/
cd Q3CU04/UT120827/
cd Q4CU05/
cd RM
cd RMS/
cd RYScuti/
cd Resources/lib/python2.7/