codescalersinternships / home

home repo for internships
1 stars 0 forks source link

Coreutils - Python - Nabil #161

Open Nabil-Salah opened 2 days ago

Nabil-Salah commented 2 days ago

CoreUtils in Python

Description

Goal is to reimplement several core Unix utilities. giving exposure to Python basics, including file I/O, flag parsing, string manipulation, and more.

Requirements

  1. Create Go programs that replicate the functionality of the following Unix utilities:

    • [x] head
    • [x] tail
    • [x] wc (word count)
    • [x] cat
    • [x] echo
    • [x] tree
    • [x] env
    • [x] true
    • [x] false
  2. Each utility should be implemented as a separate Go program.

  3. Programs should read input from files or stdin as appropriate.

  4. Implement basic flags for each utility where applicable.

Example Implementations

1. head

2. tail

3. wc (word count)

4. cat

5. echo

Acceptance Criteria

Resources