//2. use the buffer from the next operation to read file to buffer
//3. switch redirection operation with next one
if(operations.size() > 0) {
ConsoleOperation nextOperation = operations.remove(0);
if( nextOperation.getBuffer().length() > 0) {
AeshLine line = Parser.findAllWords(nextOperation.getBuffer());
currentOperation = new ConsoleOperation(nextOperation.getControlOperator(), op.getBuffer());
File readFile = new File(Parser.switchEscapedSpacesToSpacesInWord(line.getWords().get(0)));
if(readFile.isFile()) {
standardStream.setStdIn(new BufferedInputStream(
new FileInputStream(readFile)));
output = new ConsoleOperation(nextOperation.getControlOperator(),op.getBuffer());
}