当前位置: 技术问答>linux和unix
20090102用shell代码转换为2009-01-02?帮忙了,谢谢
来源: 互联网 发布时间:2015-07-10
本文导语: 20090102用shell代码转换为2009-01-02?帮忙了,谢谢 | str="20090102" item=`echo $str | cut -c -f1,4` result=$item item=`echo $str | cut -c -f5,6` result="$result-$item" item=`echo $str | cut -c -f7,8` result="$result-$item" | ...
20090102用shell代码转换为2009-01-02?帮忙了,谢谢
|
str="20090102"
item=`echo $str | cut -c -f1,4`
result=$item
item=`echo $str | cut -c -f5,6`
result="$result-$item"
item=`echo $str | cut -c -f7,8`
result="$result-$item"
item=`echo $str | cut -c -f1,4`
result=$item
item=`echo $str | cut -c -f5,6`
result="$result-$item"
item=`echo $str | cut -c -f7,8`
result="$result-$item"
|
echo 20090102 | awk -F '' '{ print $1$2$3$4 "-" $5$6 "-" $7$8 }'
|
结贴啊,老兄,不然要被人骂的
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。