master
1what is the executable name for the bourne shell?,sh,nix_commands
2what is the executable name for the bourne again shell?,bash,nix_commands
3what is the executable name for the korn shell?,ksh,nix_commands
4what is the executable name for the z shell?,zsh,nix_commands
5what is the executable name for embeded systems / mobile shell?,busybox,nix_commands
6what is the executable name for the almquist shell?,ash,nix_commands
7what is the executable name for the debian almqist shell?,dash,nix_commands
8what is the executable name for the C shell?,csh,nix_commands
9what is the executable name for the TENEX C shell (turbo c shell)?,tcsh,nix_commands
10unix commands: copy a single file,cp,nix_commands
11unix commands: copy a folder (recursive),cp -R,nix_commands
12unix commands: move a file,mv,nix_commands
13unix commands: remove a file,rm,nix_commands
14unix commands: make a directory,mkdir,nix_commands
15unix commands: update the timestamp of a file,touch,nix_commands
16unix commands: create a zero byte file,touch,nix_commands
17unix commands: determine file type,file,nix_commands
18unix commands: display the detailed status and attributes of a file,stat,nix_commands
19unix commands: mount a filesystem,mount,nix_commands
20unix commands: show currently mounted a filesystems,mount,nix_commands
21unix commands: unmount a filesystem,umount,nix_commands
22unix commands: report file system disk space usage,df,nix_commands
23unix commands: estimate file space usage,du,nix_commands
24unix commands: search for files in a directory hierarchy,find,nix_commands
25unix commands: find the on disk location of a command,which,nix_commands
26unix commands: output the first part of files,head,nix_commands
27unix commands: output the last parts of a file,tail,nix_commands
28unix commands: concatenate files and output to standard out,cat,nix_commands
29unix commands: display a file interactively (not more),less,nix_commands
30unix commands: switch user,su,nix_commands
31unix commands: become superuser,su,nix_commands
32unix commands: execute a command as another user,sudo,nix_commands
33unix commands: display manuals,man,nix_commands
34unix commands: display local shell environment variables,set,nix_commands
35unix commands: display global environment variables,env,nix_commands
36# unix commands: ,grep,nix_commands
37unix commands: varient of grep utilizing extended regex,egrep,nix_commands
38unix commands: varient of grep utilizing lists of fixed strings,fgrep,nix_commands
39unix commands: varient of grep which reads all files under each directory,rgrep,nix_commands
40unix commands: remove secitions from each line of files/input,cut,nix_commands
41unix commands: sort lines of text files,sort,nix_commands
42unix commands: report or omit repeated lines,uniq,nix_commands
43unix commands: print newline word or byte counts for files,wc,nix_commands
44unix commands: compare files line by line,diff,nix_commands
45unix commands: stream editor for filtering and transforming text,sed,nix_commands
46unix commands: pattern scanning and processing language,awk,nix_commands
47# unix commands: ,echo,nix_commands
48# unix commands: ,export,nix_commands
49# unix commands: ,pwd,nix_commands
50# unix commands: ,ln,nix_commands
51# unix commands: ,apropos,nix_commands
52# unix commands: ,info,nix_commands
53# unix commands: ,whatis,nix_commands
54# unix commands: ,lsblk,nix_commands
55unix commands: locate/print disk device attributes (e.g. UUID),blkid,nix_commands
56# unix commands: ,debugfs,nix_commands
57# unix commands: ,chmod,nix_commands
58# unix commands: ,chgrp,nix_commands
59# unix commands: ,chown,nix_commands
60# unix commands: ,dd,nix_commands
61# unix commands: ,date,nix_commands
62# unix commands: ,hostname,nix_commands
63# unix commands: ,rmdir,nix_commands
64# unix commands: ,mkdir,nix_commands
65# unix commands: ,uname,nix_commands
66# unix commands: ,chattr,nix_commands
67# unix commands: ,xxd,nix_commands
68# unix commands: ,kill,nix_commands
69# unix commands: ,bg,nix_commands
70# unix commands: ,fg,nix_commands
71# unix commands: ,jobs,nix_commands
72# unix commands: ,runlevel,nix_commands
73# unix commands: ,who,nix_commands
74# unix commands: ,initctl,nix_commands
75The ____ shell with debian patch drops privileges upon initialization.,bash,nix_commands,See '-p' in man bash.
76The ____ command provides detailed metadata information on a file.,stat,nix_commands,man pages
77The ____ command provides information on the file type,file,nix_commands,man pages
78The ____ command places the most recently suspended job in the background,bg,nix_commands,http://www.computerhope.com/unix/ush.htm
79The ____ command brings the most recently backgrounded job to the foreground,fg,nix_commands,http://www.computerhope.com/unix/ush.htm
80The ____ command lists currently running jobs.,jobs,nix_commands,http://www.computerhope.com/unix/ush.htm
81What command sets the default permissions mask?,umask,nix_commands,http://www.computerhope.com/unix/uumask.htm
82'umask -?' gives the symbolic representation?,S,nix_commands,http://www.computerhope.com/unix/uumask.htm
83What command changes permissions?,chmod,nix_commands,http://www.computerhope.com/unix/uchmod.htm
84[T/F] chmod preserves the setuid bit of a file if the file owner or group does not match.,F,nix_commands,http://www.computerhope.com/unix/uchmod.htm