Created
          September 2, 2016 07:53 
        
      - 
      
- 
        Save suruseas/01b762f2b7a1ef3206b73e2cb3eef02b to your computer and use it in GitHub Desktop. 
    読み込んだファイルを一行づつechoする
  
        
  
    
      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/sh | |
| OUTPUTFILE=$1 | |
| while read line || [[ -n $line ]]; do | |
| echo $line | |
| done < $OUTPUTFILE | |
| exit 0 | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
最終行に改行コードがない場合も対応