Created
          December 27, 2019 18:46 
        
      - 
      
- 
        Save shnhrtkyk/21f080bd88fdd04de81ad687e06b905a to your computer and use it in GitHub Desktop. 
    txtspliter.sh
  
        
  
    
      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
    
  
  
    
  | for file in `\find . -name '*.txt'`; do | |
| echo $file | |
| echo ${file##*/} | |
| cut -f1,2,3,4 -d";" $file > ../train_pointtxt/${file##*/} | |
| cut -f5- -d";" $file > ../train_wavetxt/${file##*/} | |
| done | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment