(((pseudocode))) open input file for reading slurp ENTIRE input file into array (@contents = ) close the input file use grep to remove lines with trailing slashes from the array (@contents = grep { !/\/$/ } @contents) open the input file for writing (this act will destroy the input file!) write array into the file