首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

跪求Unix下令大神解答

2013-02-24 
跪求Unix命令大神解答 1:Write a UNIX command to count the number of rows in the matrix. 2:Write a U

跪求Unix命令大神解答
 1:Write a UNIX command to count the number of rows in the matrix.
 2:Write a UNIX command to count the number of columns in the
   matrix.
 3:Write a UNIX command to count the total number of entries in the
   matrix.
 4:Write a UNIX command to display the element a11.


PS: Do not use awk, sed
[解决办法]
cat a 
[解决办法]
 wc -l  这样的最好不要cat  直接wc -l a
同样head -n2 a 
[解决办法]
 tail -n1 
[解决办法]
 cut -d" " --fields=2
[解决办法]
1、显示行数
wc -l file

2、显示列数
set -- `head -1 file`; echo $#

3、显示个数
wc -w file

4、a11是什么?

热点排行