标签:shell 心得 思考
题目: 看图写个shell小程序
shell代码
[root@localhost logs]# cat bb.sh
#!/bin/bash
>aaa
echo 6 3 1 7 5 8 9 2 4 | xargs -n1 >dd
for i in `seq 9`
do
cat dd | awk ‘NR==1{print $0}‘ >>aaa
sed -i ‘1d‘ dd
b=`cat dd | awk ‘NR==1{print $0}‘`
echo $b >>dd
sed -i ‘1d‘ dd
done
cat aaa |xargs | sed ‘s/ //g‘
本文出自 “IT生活” 博客,请务必保留此出处http://dingxue.blog.51cto.com/12290895/1973195
标签:shell 心得 思考
原文地址:http://dingxue.blog.51cto.com/12290895/1973195