File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ # !/usr/bin/perl -w
2
+
3
+ use strict;
4
+ use English;
5
+ use File::Basename;
6
+
7
+ # Get the base program name and build usage string
8
+ my $CMD = &basename($0 );
9
+ my $USAGE = " usage: $CMD <class> <filename>\n " ;
10
+
11
+ # Get the user id and class number
12
+ my $user = scalar getpwuid $UID or die " User not recognized\n " ;
13
+ my $class = shift @ARGV ;
14
+ die $USAGE unless defined $class ;
15
+
16
+ # Build the path to the submit directory
17
+ my $submit_dir = " /home/student/Submit/" .
18
+ " $class /" . $user . " /" ;
19
+
20
+ # Get the name of the file to delete
21
+ my $filename = shift @ARGV ;
22
+ die $USAGE unless defined $filename ;
23
+
24
+ # Build full path to file and attempt to rm
25
+ my $file_path = $submit_dir . $filename ;
26
+ ` rm $file_path ` ;
27
+ die " Failed to remove\n " if $? ;
28
+ print " removing $filename from your $class submit directory...\n " ;
You can’t perform that action at this time.
0 commit comments