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 # Exercise 4
# help arg
# 1. Getting help with -help or -h. # 1. Getting help with -help or -h.
# 2. A least three arguments that are flags, meaning they dont take an extra # 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. # argument but simply putting them on the command line turns something on.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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