How can I convert newline [ line break or end-of-line (EOL) character ] between Unix and Windows text files?
{ 0 comments }
I noticed that many shell scripts in /etc/init.d/ directory use the following syntax:
echo $“Usage $prog start|stop|reload|restart”
Why a double-quoted string preceded by a dollar sign ($”string”) using the echo command under Linux / UNIX bash scripts?
{ 2 comments }
Q. How do I kill a process called inetd or foo and restart the same so that configuration file get updated? A. Both UNIX and Linux supports POSIX reliable signals and POSIX real-time signals. Each signal has a current disposition, which determines how the process behaves when it is delivered the signal. Generally following command [...]
{ 0 comments }