Skip to content

Instantly share code, notes, and snippets.

@kauevestena
Created November 23, 2018 18:06
Show Gist options
  • Save kauevestena/7faf579716e6e73108b5c92a70489f97 to your computer and use it in GitHub Desktop.
Save kauevestena/7faf579716e6e73108b5c92a70489f97 to your computer and use it in GitHub Desktop.
script para converter múltiplos hatanaka em RINEX
#!/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