CMIT 391 Name:___________________ What files in the filesystem whose names end in .txt are not considered some kind of text by the file command? How many are there?______________ Then, what are the different kinds of files (discard symlinks) _________________________________ Which files or folders have names that contain a space: ___________________________ Show the username, PID and TIME of the five processes that have used the most TIME as reported by ps. Paste your pipeline: ___________________________________________ PPID is the parent PID. Which process spawned the most number of child processes: __________ Make a list of each process and the number of sub-processes it spawned: paste your pipe ________________________________ Do any of the Snn* symbolic links in the current runlevel's rc folder point to files whose names are not the same as the * part of the Snn* symbolic link: _______________________________________________ in other words, does each filename in one directory exist in the other directory. for i in `ls /etc/rc2.d/S* | sed 's?.*/S..??g'` ;do if ls /etc/init.d | grep $i >/dev/null ;then : ;else echo Missing $i ;fi ;done In general, is one list a subset of another? Make a pipeline that will test if every word of one file is in another file. ____________________________________________ Make a pipeline that determines if there are any copies of a file in some particular folder.