|
|
backspace equivalent in shell scripting - Shell Scripting
|
Views : 419
|
|
Tagged in : Shell Scripting
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
backspace equivalent in shell scripting
echo -e 'testing back'; echo --space back;
RESULT :
testing back
--space back
echo -e 'testing back\b\b\b\b\c'; echo --space back
RESULT : testing --space back
In the above code the \b option will remove backspace and \c option will suppress the newline.
|
|
By RameshKumar, On - 2010-01-27 |
|
|
|