We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ce2651 commit e31edffCopy full SHA for e31edff
1 file changed
implement-shell-tools/cat/cat.py
@@ -2,7 +2,7 @@
2
3
parser = argparse.ArgumentParser(prog="cat", description="Prints the output of a file to the console")
4
parser.add_argument("-n", "--number", help="Displays the lines along with their number", action="store_true")
5
-parser.add_argument("-b", "--nonblank", help="Displays the lines along with their number", action="store_true")
+parser.add_argument("-b", "--nonblank", help="Displays the lines along with their number skipping the blank lines", action="store_true")
6
parser.add_argument("path", help="The file path", nargs="+")
7
8
args = parser.parse_args()
0 commit comments