Created
November 23, 2018 18:06
-
-
Save kauevestena/7faf579716e6e73108b5c92a70489f97 to your computer and use it in GitHub Desktop.
script para converter múltiplos hatanaka em RINEX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#### | |
#### script para converter múltiplos hatanaka em RINEX | |
#### | |
#### usage: | |
#### $ bash multihtnk2rnx.bash <foldername> | |
#### requires CRX2RNX from http://terras.gsi.go.jp/ja/crx2rnx.html | |
#### | |
for file in $1/* | |
do | |
echo $file | |
./CRX2RNX $file | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment