Schedule
Labs
Assignments
TA office hours
Topic videos
Some course notes
Extra problems
Lecture recordings
b) The command "powercord" outputs something to the standard output. Write an sh command to run this command but with the output going instead to the standard error output (of the shell script in which your command appears).
speak 2>speech
b) powercord >&2
Note: '>' redirects file descriptor 1 by default, but "powercord 1>&2" is just
as good an answer to this question.