Skip to content

Commit cc54d96

Browse files
author
Nicholas Marasco
committed
added the script the to repo
1 parent 105520c commit cc54d96

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

rmsubmit

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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";

0 commit comments

Comments
 (0)