Answers for "echo off"

PHP
-1

php clear echo

<?php

ob_start();
echo 'a';
print 'b';

// some statement that removes all printed/echoed items
ob_end_clean();

echo 'c';

// the final output is equal to 'c', not 'abc'

?>
Posted by: Guest on July-10-2020
0

bat turn echo off

The following can be used to turn echo off in a bat file at any point:
@echo off
It can be turned on again at any point with:
@echo on
Posted by: Guest on April-06-2020
3

echo -n bash

echo(1) - display a line of text
Echo the STRING(s) to standard output.
-n    do not output the trailing newline
Posted by: Guest on March-18-2020

Browse Popular Code Answers by Language