Shell script, linux, unix, shell

Addy

$path/shel.sh abcdefgh $path/log.log > file. Log

What does "abcdefgh" means, is it parameter which provided for that script. (shel.sh)? Can any one please explain? Thanks in advance!

nxnev
  • $path/shel.sh: This is the command, unless $path gets expanded and word splitting occurs.
  • abcdefgh: This is the first argument.
  • $path/log.log: Second argument, unless, again, $path gets expanded and word splitting occurs.
  • > file.: This is a redirection. The output of your command will be redirected to file..
  • Log: Third argument. Please note that there is a space between file. and Log, so Log will be just another argument.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related