1. 程式人生 > >shell指令碼-----按行讀取檔案

shell指令碼-----按行讀取檔案

[email protected]:5.read-line$ cat file.bin 
hello world
this is 1
this is 2
this is 3
[email protected]:5.read-line$ ./read-line.sh file.bin 
##### 方法 1 #####
hello world
this is 1
this is 2
this is 3
##### 方法 2 #####
hello world
this is 1
this is 2
this is 3
##### 方法 3 #####
hello
world
this
is
1
this
is
2
this
is
3

相關推薦

shell指令碼讀取檔案並解析

shell指令碼讀取一個配置檔案,配置檔案的格式如下: name=abc pwd=123456 permission=mop 檔名稱為 config.cfg 要在shell腳本里讀取這個配置檔案,並且把值一一賦給相應的變數,實現如下 while read l

shell指令碼-----讀取檔案

[email protected]:5.read-line$ cat file.bin  hello world this is 1 this is 2 this is 3[email protected]:5.read-line$ ./read-line.sh file.bin  ###

Linux中的Shell指令碼讀取檔案的4種方法

1.釜底抽薪法 while迴圈中執行效率最高,最常用的方法 function while_read_LINE_bottm(){ While read LINE do echo $LINE done 

C 讀取檔案(但是最後一行會多輸出一行)

#include <stdio.h>   int main()  {      char filename[] = "E:\\data_test\\commands.txt"; //檔名   &nb

java讀取檔案並對檔案進行加密和解密

package com.alibaba.datax.plugin.reader.selfxmlfilereader.util; import java.io.UnsupportedEncodingException; import java.security

C/C++ 讀取檔案

本文程式碼都在Windows/VC++6.0下測試過, 在linux/g++下也沒有問題。         但是請一定注意linux和Windows檔案格式的區別,比如:    &n

C語言之讀取檔案

原文字檔案 outlook,temperature,humidity,windy,play sunny,hot,high,FALSE,no sunny,hot,high,TRUE,no overcas

Java讀取檔案並輸出

public class ReadFileByLines { public static void main(String[] args) { try{ //1.開啟一個file

java 讀取檔案

package cn.com.yy.controller; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNot

CStdioFile讀取檔案.

virtual LPTSTR ReadString( LPTSTR lpsz, UINT nMax ); virtual BOOL ReadString( CString& rString ); CStdioFile aFile; CF

NIO讀取檔案內容,並打印出來

package com.broada.wssh.groovy; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.nio.ByteBuf

Java 實現讀取檔案並且將中的重複資料刪除

package com.gaden.delerepeat; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.InputStr

java讀取檔案實現方法一

public static void main(String[] args) throws IOException { FileInputStream inputStream = new FileInputStream("d://a.txt");

python讀取檔案 如何去掉換符 "\n"

程式如下: for line in file.readlines(): line=line.strip('\n') 使用strip()函式去掉每行結束的\n strip()函式原型 宣告:s為字串,rm為要刪除的字元序列 s.strip(rm)        刪

java讀取檔案

File file = new File(srcPath); FileInputStream fileInputStream = new FileInputStream(file); InputStreamReader inputStreamReader = new Inpu

Java 讀取檔案寫入檔案並以空格分割字串

首先是按行讀取字串 import java.io.BufferedReader; import java.io.File; import java.io.FileReader; public c

shell檔案讀取, 分割成陣列

cut -d 如果找不到分割符號, 就會輸出原字串,無聊-f後面是什麼,加-s就什麼都不輸出了 #!/bin/bash # 從檔案中按行讀取,每行分割成字串, 形成陣列# j=0 while read line do i=1 while : do

Java文字檔案讀取

package my; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileReader; import java.io.InputStrea

20170928 使用網頁管理叢集 讀取寫入useragent txt檔案

根據20170901---20170903的position資料分析useragent,優化urlutil。 從叢集中hdfs dfs -cat /user/log/position/20170901/*/* |awk -Furlutil'\t' 'print $8'|sort|uniq >

io流讀取磁碟檔案

package stream; import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundExcept