如何删除[
从 ”[19/Mar/2020:05:57:09
“使用sed
或awk
?
我需要[
从日志文件中删除日期和时间“”。
答案1
这里有一些解决方案:
# Remove with tr and write changes to second file
tr -d '[' < file > file_edited
# Remove with sed and write changes to second file
sed 's/\[//' file > file_edited
# Remove with sed and edit the file inplace!
sed -i 's/\[//' file
注意,tr
解决方案将删除[
文件中的所有内容,sed
解决方案将删除每行的第一个内容[
。如果这不是您想要的,您需要编辑您的问题并提供更多详细信息。