in reply to Re^4: Listing of files using glob
in thread Listing of files using glob
Output:perl -e '$nameWithoutFastaSign = ">1elwA"; print "before: $nameWithoutFastaSign\n"; $nameWithoutFastaSign =~ tr/>//d; print "after: $nameWithoutFastaSign\n";'
before: >1elwA after: 1elwA
|
|---|