简体   繁体   中英

How to get sed or awk commands in a variable

I'm trying to change the filename from prod.test.PVSREGPLUS20170915-6777.DAT.gpg to PVSREGPLUS20170915-0003.DAT.gpg

I used this

DTE=$(date +%I);ls  prod.test* |cut -f 3,4,5 -d .|sed "s/\-/-00$DTE/" |cut -c 1-23,28-35

My problem is I need this command in a shell script

"#! /bin/bash

DTE=$(date +%I)

newfile=$(ls  prod.test* |cut -f 3,4,5 -d .|sed "s/-*./$DTE/"|cut -c 1-23,28-35

The sed can't do expansion, would awk be able to do this? Any help would be greatly appreciated. Thanks

The simplest way to do this is with a for-loop over a glob pattern, then use paramater expansion to remove the prefix

prefix="prod.test."
hour=$(date '+%I')
for f in "$prefix"*; do 
    new=$( echo "${f#$prefix}" | sed 's/-[[:digit:]]\+/-00'"$hour"'/' )
    echo mv "$f" "$new"
done

We really don't need sed: extended patterns and more parameter expansion

shopt -s extglob
for f in "$prefix"*; do 
    new=${f#$prefix}
    new=${new/-+([0-9])/-00$hour}
    echo mv "$f" "$new"
done

Remove "echo" if it looks good.

Or, with the perl rename as suggested in the comments:

rename -v -n 's/prod\.test\.//; use Time::Piece; s{-\d+}{"-00" . (localtime)->strftime("%I") }e' prod.test.*

Remove "-n" if it looks good.

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