This commit is contained in:
perro tuerto 2023-03-03 10:49:43 -08:00
parent 827d2ec034
commit b6e0169546
7 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,5 @@
# Exercise 4
# help arg
# 1. Getting help with -help or -h.
# 2. A least three arguments that are flags, meaning they dont take an extra
# argument but simply putting them on the command line turns something on.

View File

@ -1,5 +1,5 @@
# Exercise 5
# 1. cat command
# cat command
import argparse
from pathlib import Path

View File

@ -1,5 +1,5 @@
# Exercise 6
# 1. find command
# find command
import sys
import argparse

View File

@ -1,5 +1,5 @@
# Exercise 7
# 1. grep command
# grep command
import re
import sys

View File

@ -1,5 +1,5 @@
# Exercise 8
# 1. cut command
# cut command
import re
import sys

View File

@ -1,5 +1,5 @@
# Exercise 9
# 1. sed command
# sed command
import re
import sys

View File

@ -1,5 +1,5 @@
# Exercise 10
# 1. sort command
# sort command
import sys
import argparse