Posts by Dayane Carmo • 11 points
2 posts
-
0
votes1
answer242
viewsA: Treat special characters
No sed, pass the "backslash" before the normal slider. Ex: sed '/channelType/,/\/channelType/!d' file.log In the above command I’m taking a chunk of the log that goes from "channelType" until…
-
0
votes2
answers2044
viewsA: How to get a part of a file name in shell script?
ls *.war | awk -F '-' {'print $3'} | awk -F '.war' {'print $1'} while read versao do mkdir $versao done
shell-scriptanswered Dayane Carmo 11