Questions
- Which command would you use to view all of the
zshmodules that have been loaded into yourzshsession?-
zmodls zmod -lzmodload -lzmodload
-
- You want to load the math function module. Which of these commands would you use?
-
zmod mathfunc zmod zsh/mathfunc-
zmodload -l mathfunc zmodload -l zsh/mathfunczmodload zsh/mathfunc
-
- What is a major difference between the way that
bashandzshhandle arrays?- There is no difference.
basharray indexing begins at 1,zsharray indexing begins at 0.-
basharray indexing begins at 0,zsharray indexing begins at 1. -
bashcan work with arrays, butzshcan’t.
- Which
zshcommand would you use to view all of the.pngfiles and all of the.PNGfiles that are in your directory?-
ls *.png ls (#i).pngls (#l)...
-