CSE 374 15au - Homework 2
Due: Thursday, Oct. 15, at 11 pm.
In this assignment you'll gain some more experience with shell commands and with writing short shell scripts.
General hint: Before trying to write and debug a script, it's very helpful to first work out the necessary commands by experimenting in a shell window. Also, look at man pages and other descriptions of commands. Sometimes options are available that allow a single command to do something you want instead of having to use several commands.
- (Commands and output) Use each of the following commands such
that
glorp
(and nothing more) is printed on standard out, and nothing is printed on standard error when the command is entered. You can precede your commands with other commands (e.g., to create a file, run other commands, etc.) and/or pass options or arguments to your commands. Solve this problem for each of the listed commands individually.
echo, cat, ls, grep, !!
In a text file calledproblem1
describe your solutions, including each command you use and a very brief explanation of it. And, yes, "nothing more" in the output means "nothing more".
- (An alias) Create a bash alias
private
such that when you runprivate foo
, the entire subtree of the file-system starting atfoo
(so justfoo
if it is a file, butfoo
and all of its files and subdirectories recursively if it is a directory) has its permissions changed as follows:
- The user's (owner's) permissions are unchanged.
- The group permissions are changed to match the owner's.
- All world (others) permissions are set so they do not allow
any access to the file - read, write, or execute
defprivate
such that enteringsource defprivate
would makeprivate
available in the current shell.
Hint:g=u
.
- (Script) Create a bash script
combine
that takes 2 or more arguments, call themf1, f2, ..., fn
. Scriptcombine
should work as follows:
- All arguments are treated as filenames.
- If fewer than two arguments are given, print a suitable
error message on
stderr
and exit. - If a file or directory
f1
already exists, print "Error: first file exists" onstderr
and exit. - Otherwise concatenate the contents of
f2, ..., fn
and copy them tostdout
. Do not print any error messages from this (for example if some file does not exist or is a directory). Instead, any such error messages should be written tof1
.
Restriction: You may not use either/dev/stdout
or/dev/stderr
. These are not portable across *nix systems. Although they are found on most versions of Linux the problem can be solved without them.
Hint: Put filenames in double-quotes in case they contain "funny characters" (such as spaces). Your script should work with any file names, no matter what they contain.
Hints:shift, $@, -lt, -a
.
Hint: Hints are just ideas you might find useful, not things that must appear in your solution.
- (Script) Create a bash script called
datedlinecount
that works as follows:
- If it is given fewer than two arguments, it prints an appropriate error and exits.
- Assume all the arguments are filenames for text files; you do not need to check for this.
- Append to the file indicated by the first argument the
following information:
- The time and date
- One line for each of the second-through-last arguments, containing the number of lines in the file and then the name of the file
- If there were three or more arguments (i.e., two or more
files to be counted), one additional line with the total
number of lines in all the files and then the
word
total
.
For example, executing:./datedlinecount log foo bar; ./datedlinecount log foo*; cat log
might produce something like:
Mon Oct 12 20:42:16 PDT 2015 4 foo 17 bar 21 total Mon Oct 12 20:42:17 PDT 2015 4 foo 3 food 7 total
Hints:shift, date, wc, $@
.
Extra credit: The output should include a total line even if only a single file appears in the list.
Assessment: Your solutions should be:
- Correct scripts, etc., that run with
bash
on our reference systems (klaatu
and the CSE Fedora 22 virtual machine). - In good style, including indentation and line breaks.
- Of reasonable size.
Identifying information including your name, CSE 374 Homework 2, the problem number, and the date should appear as comments in each of your files.
Turn-in Instructions: Use the turn-in drop box
link on the main course web page to submit your files. If you wish,
you can combine your files into an archive (see the tar
command) and turn that in as a single file. The choice is yours; do
whichever is most convenient.
The drop box will allow you to turn in your homework up to two days late, if you choose to use one or two of your late days, but you are strongly advised to save your late days for later in the quarter when they are almost certain to be much more useful.
Computer Science & Engineering University of Washington Box 352350 Seattle, WA 98195-2350 (206) 543-1695 voice, (206) 543-2969 FAX
Comments to adminanchor