在csv中du输出后附加文本

时间:2018-07-06 09:00:19

标签: bash csv awk du

到目前为止,这是我的代码:

sizeFolder(){
  du -h --max-depth=1 --block-size=1M $TMP_DIR | sort -hr | awk '{print $1,$2}'
}

这是我的输出:

 ----------------------------
 Fr 6. Jul 10:37:16 CEST 2018
 ----------------------------
 ;
 PV Size /PV Name
 ;
 3775 /usr add (line 1 from textfile)
 1805 /usr/share add (line 2 from textfile)
 1382 /usr/lib add (line 3 from textfile)
 384 /usr/src
 176 /usr/bin
 17 /usr/sbin
 13 /usr/include
 1 /usr/local
 1 /usr/games
 ;

如输出所示,如何将简单文本文件中的文本行附加到路径名?

4 个答案:

答案 0 :(得分:1)

更改:

awk '{print $1,$2}'

收件人:

awk 'NR==FNR{a[NR]=$0; next} {print $1, $2, a[FNR]}' textfile -

答案 1 :(得分:0)

您可以尝试类似的操作(使用bash):

i=1
file="..." # replace the value by your file path
max="$(cat $file|wc -l)"
while read -r; do 
  if [[ $REPLY =~ ^[0-9]+ ]]; then 
    [[ $i -le $max ]] && echo "${REPLY} add $(head -n $i $file|tail -n 1)" || echo "${REPLY}"
    (( i++ ))
  else 
    echo "${REPLY}"; 
  fi; 
done < <(sizeFolder)

当然,还有许多其他解决方案(例如使用awk)。

演示:

$ cat test.txt 
----------------------------
Fr 6. Jul 10:37:16 CEST 2018
----------------------------
;
PV Size /PV Name
;
3775 /usr
1805 /usr/share
1382 /usr/lib
384 /usr/src
176 /usr/bin
17 /usr/sbin
13 /usr/include
1 /usr/local
1 /usr/games
;
$ cat test2.txt 
line1
line2
line3
$ i=1; while read -r; do if [[ $REPLY =~ ^[0-9]+ ]]; then [[ $i -le $(cat test2.txt|wc -l) ]] && echo "${REPLY} add $(head -n $i test2.txt|tail -n 1)" || echo "${REPLY}"; (( i++ )); else echo "${REPLY}"; fi; done < test.txt 
----------------------------
Fr 6. Jul 10:37:16 CEST 2018
----------------------------
;
PV Size /PV Name
;
3775 /usr add line1
1805 /usr/share add line2
1382 /usr/lib add line3
384 /usr/src
176 /usr/bin
17 /usr/sbin
13 /usr/include
1 /usr/local
1 /usr/games
;
$

答案 2 :(得分:0)

script.sh

sizeFolder(){
  # read simple text (given as argument $1)
  IFS=$'\n' read -d '' -r -a simpletext < "$1"
  # read output from du
  IFS=$'\n' read -d '' -r -a duoutput < <(du -h --max-depth=1 --block-size=1M /TMP_DIR | sort -hr | awk '{print $1,$2}')
  len=${#simpletext[@]}
  # loop over both variables
  for ((i=0;i<=$len;i++))
  do
    echo "${duoutput[$i]} ${simpletext[$i]}"
  done
}
sizeFolder "$1"

致电:

script.sh simpletext.txt

答案 3 :(得分:0)

使用paste可以非常简单:

paste -d' ' <(sizeFolder) test.txt

这不会处理示例输出中的标头,但由于您的代码未生成标头,因此我认为将通过不同的方式(例如,周围的脚本)添加标头。只要确保该脚本在完成paste 即可。