public CommandLine<T, SCRIPT> addRaw(String format, boolean force, String... args) {
if(format.contains("rm ") && !force){
throw new BearException("rm in raw mode is forbidden. Use rmLine(...) or rm(...) to avoid deleting system libs.");
}
strings.add(new CommandLineOperator(String.format(format, args)));
return this;
}