- 论坛徽章:
- 0
|
回复 13# blackold
jzhong-desktop:/tmp/test# awk --version
GNU Awk 3.1.6
Copyright (C) 1989, 1991-2007 Free Software Foundation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
.....
along with this program. If not, see http://www.gnu.org/licenses/.
jzhong-desktop:/tmp/test# awk 'FNR==NR{a[$2]=$1;next} {FS="/";OFS="/"; $1=a[$1]; print $0 }' map.txt my1.log
单位一/dir/2008-02-13
单位三/dir/2008-03-3
单位七/dir/2008-03-3
单位六/dir/2008-05-3
单位七/dir/2008-06-3
单位二/dir/2008-08-3
单位九/dir/2008-10-3
单位二/dir/2009-01-3
单位一/dir/2009-11-3
单位六/dir/2010-01-3
特殊单位/dir/2011-01-3 |
|