Remove file without asking
You might have rm
aliased to rm -i
so try this:
/bin/rm -f file.log
To see your aliases you can run alias
.
The force flag removes all prompts;
rm -f {file}
May the force be with you - rm -f
You might have rm
aliased to rm -i
so try this:
/bin/rm -f file.log
To see your aliases you can run alias
.
The force flag removes all prompts;
rm -f {file}
May the force be with you - rm -f