Bash Scripting - Text Processing in Scripts
What will be the output of this command?
Assuming
error: file not found
success: file saved
error: access denied
grep -v "error" log.txt
Assuming
log.txt contains:error: file not found
success: file saved
error: access denied
