echo command in shell scripting | enable escape sequence in echo | disable trailing newline in echo

preview_player
Показать описание
Hello guys , this video focuses on echo command used in linux and shell scripting to show text in output screen . I had started with simple usage of echo command with examples and clarify the use of echo with and without quotes . After that , I discussed various options that are used with echo command .
Topics covered in this video are :
- echo command in shell scripting
- use of echo command
- disable trailing newline while using echo in sell scripting
- enable escape sequence characters in echo
- disable escape sequence characters in echo
- echo command with and without quotes
- echo command in detail

#echo #linux #shell #scripting
_____________________________________________________
Support My Work On ...

_____________________________________________________
Connect With Me On ...

Рекомендации по теме
Комментарии
Автор

I've watched several of these Pedagogy scripting tutorials and they are excellent.

reptilicusrex
Автор

One question here, if we use "echo -e" command to delcare variable, how it will work?

Please refer below example :-
File_Name="Hi Kunjan"
echo $File_Name

kunjandesai