Author: Stan Eisenstat
Subject: Re: [Cs223] None
Date: Thursday, 02 Apr 2020, 15:00:13
> Message Posted By: Unknown
>
> cat t101 prints out the test file, and cat t101.t prints out what the
> staff solution's answer to t101 is, but how do i view the specific length
> and position and other command line arguments that were input with the
> test file?
Each test file contains one or more lines that call
Qsort. The arguments are given on that line.
=====
> I keep seeing " | sort -c" appear on the newsgroup but couldn't find any
> mention of it in the spec. What does that do and should we be using it?
The "| sort -c" pipes the standard output from Qsort
into the standard input of the system sort utility
and asks it to check whether the lines are in sorted
order.
--Stan-
PREV
INDEX
NEXT