1. 程式人生 > >linux學習中遇到的問題—請教

linux學習中遇到的問題—請教

share ifconf 一個 ati 問題 bsp text /dev/ dev

問題1:find命令用 “-a” 時為什麽找不出以下*sample*文件?

[[email protected] test]# find / -name "usr"
/usr
/usr/share/doc/oddjob-0.30/sample/usr
/usr/share/gdb/auto-load/usr
[[email protected] test]# find / -name "usr" -a -name "sample"
[[email protected] test]# find / -name "usr" -a -name "*sample*"
[[email protected]

/* */ test]#

解答:該命令相當於既找一個文件該文件既叫usr同時又叫sample,矛盾!

問題2:以下命令為什麽不能重定向?

[[email protected] test]# ifconfig eth10
eth10: error fetching interface information: Device not found
[[email protected] test]# ifconfig eth10 2> /dev/null
[[email protected] test]# ifconfig eth10 | grep ‘interface‘ 2> /dev/null


eth10: error fetching interface information: Device not found
[[email protected] test]#

linux學習中遇到的問題—請教