2012-08-03 76 views

回答

1
grep addUser filename | grep "<user>2012-08-03</user>" 
+0

爲什麼不在雙引號之間加addUser? – alwbtc 2012-08-03 20:25:04

+0

只有在字符串有bash特殊字符的情況下,您才需要引號(單或雙)。否則它們是可選的。 – 2012-08-04 03:20:15

2
awk '/addUser/ && /2012-08-03/' < file 

grep addUser < file | grep 2012-08-03 

sed -n '[email protected]@&@p' < file | sed -n '[email protected]@&@p' 

ruby -e 'File.readlines("file").each {|l| puts l if l =~ /addUser/ and l =~ /2012-08-03/ }' 
+0

謝謝,如果字符串是:「 2012-08-03」和「addUser」,那麼如何?順便提一下, – alwbtc 2012-08-03 14:52:20

+0

沒有用。 – alwbtc 2012-08-03 14:54:17

+0

粘貼你試過的命令。 – InternetSeriousBusiness 2012-08-03 15:25:15

1

在Linux命令

回聲 「的adduser 2012-08-03」> data.txt中

看到的data.txt文件類型的內容 貓data.txt中

或vi的data.txt

相關問題