简体   繁体   中英

Edit a text file using a Bash script

I have file which is of the following format:

axel localhost> localhost>
mike localhost> STORAGE 298390/512000 (58.279296875%) localhost>
ab localhost> STORAGE 141361/512000 (27.6095703125%) localhost>
fghi localhost> localhost>
abcd localhost> STORAGE 165929/512000 (32.4080078125%) localhost>
lmno localhost> STORAGE 353073/512000 (68.9595703125%) localhost>
nuon localhost> localhost>
spar localhost> STORAGE 203766/512000 (39.798046875%) localhost>
fibo localhost> STORAGE 238204/512000 (46.52421875%) localhost>
nacci localhost> STORAGE 425737/512000 (83.1517578125%) localhost>
seldom localhost> STORAGE 69894/512000 (13.651171875%) localhost>
project localhost> STORAGE 86220/512000 (16.83984375%) localhost>
eccleston localhost> STORAGE 240084/512000 (46.89140625%) localhost>
swan localhost> STORAGE 279522/512000 (54.594140625%) localhost>

This is the output generated by listquota in cyradm (Cyrus-imapd). I have two questions;

  • In those lines which have localhost> localhost> , the first word should be written into another file and that line should be deleted.
  • For the other lines, the second, third and last columns need to be deleted.

How would I go about achieving this result?

Edit

Expected output

mike 298390/512000 (58.279296875%)
ab 141361/512000 (27.6095703125%)
abcd 165929/512000 (32.4080078125%)
lmno 353073/512000 (68.9595703125%)
spar 203766/512000 (39.798046875%)
fibo 238204/512000 (46.52421875%)
nacci STORAGE 425737/512000 (83.1517578125%)

My loop so far looks something like:

while read thisline; do
    if [ $2 == "localhost>" AND $3 == "localhost>" ];then
        echo $1 >>/root/names.txt
        sed '1d' filename.txt #but this deletes only the first line
    fi

done

try this:

awk '/localhost> localhost>/{print $1 >"file2";next}{$2=$3=$NF=""}7' file

this will output text you want, and generate a "file2" for the localhost> localhost> case.

didn't test, I hope there is no typoes.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM