CSE3320 Assignment 1-text-based shell utility Solved

35.00 $

Category:

Description

5/5 - (1 vote)

 

Description: You will develop a small “text-based shell utility” (“ts”) for Unix (or similar OS). A common complaint of the most-used UNIX (text) shells (Bourne, Korn, C) is that it is difficult to remember (long) file names, and type “long” command names. A “menu” type shell allows a user to “pick” an item (file or command)from a “menu”.

 

You will display a simple menu, the following is a suggestion (you may change format):

 

Current Working Dir: /home/os.progs/Me It is now: 8 September 2019, 3:59 PM

 

Files: 0. ts.c 1. a.out 2. ts.txt 3. assignment1 4. program2.c

 

Directories: 0. .. 1. my_dir

 

Operation: D Display E Edit R Run C Change Directory S Sort Directory listing M Move to Directory R Remove File Q Quit

 

You will read a single key “command” entered by the user, then a file or directory number or partial file name with “completion” and ts will output some system information on the terminal, or run a program (by means of systems calls). The commands you will implement: Edit – opens a text editor with a file. Run – runs an executable program. You should handle parameters. Change – changes working directory. Sort – sorts listing by either size or date (prompt user) You will need to implement: Prev, Next, and Operations need to be merged (menu fits on one screen). Store names in an array, Only one pass through directory. Add a menu using terminal codes or curses (ncurses). (First use initscr(), then move(), printw(), refresh(), getch(), and endwin() )

 

If the “ts” program has an argument, use it as the directory starting point (working dir), like: “./ts /bin”. You should provide a reasonable user interface. (See below) You may write this in ADA, Assembler, C, C++ or Java.(Others with permission) You should target ts to Unix, MacOS, (or similar), or discuss alternatives with instructor. Constraints: How many files and directories can you handle (max 1024) How long is a file name (max 2048 characters, really: limits.h, NAME_MAX) Bonus: Show additional file information (date, size, read/execute) Use file name completion as well as a number. Create/use a pull-down menu. Please, Submit ONLY to Canvas. All work must be your own, you may reference web sites, books, or my code but You MUST site the references.

You must submit this lab, working (or partially) by the due date. You may (optionally) demonstrate this lab, working (or partially) to the GTA before the due date. Your program should be well commented and documented, make sure the first few lines of your program contain your name, this course number, and the lab number. Your comments should reflect your design and issues in your implementation. You should address error conditions: what if an illegal command is entered or misspelled, what if a path can not be reached, or an “executable file” is not executable.

 

Hints: (you may use this code)

 

 

 

  • Assignment-1-bpy259.zip