codescalersinternships / home

home repo for internships
1 stars 0 forks source link

Coreutils - Ruby - Mariam Mahrous #169

Open mariammahrous23 opened 6 days ago

mariammahrous23 commented 6 days ago

CoreUtils in Ruby

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

Requirements

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

    • [ ] head
    • [ ] tail
    • [ ] wc (word count)
    • [ ] cat
    • [ ] echo
    • [ ] tree
    • [ ] yes
    • [ ] true
    • [ ] false
    • [ ] env
  2. Each utility should be implemented as a separate Ruby 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
  1. wc (word count)

4. cat

5. echo

Acceptance Criteria

  1. Each utility is implemented as a separate Ruby program.
  2. Includes basic error handling.
  3. Includes a README with build and usage instructions for all utilities.