

InterviewSolution
Saved Bookmarks
1. |
Solve : why is the command "chomp" used in UNIX? |
Answer» hi everybody, hi everybody, Did you mean: the use of '@' in shell-programming? Here's what `info BASH` says about it: Quote Expands to the positional PARAMETERS, starting from one. When the expansion occurs within double quotes, each parameter expands to a separate word. That is, `"[emailprotected]"' is equivalent to `"$1" "$2" ...'. The '@' also seperates the username from the hostname, e.g.: [emailprotected] |
|