Question: To assign the command `ls -lah` to the shortcut command `lh`, what command should you use?

  1. alias lh='ls -lah'
  2. link lh='ls -lah'
  3. alias 'ls -lah'=lh
  4. lh | ls -lah

Answer: The correct answer of the above question is Option A:alias lh='ls -lah'