Changes

Jump to navigation Jump to search
196 bytes added ,  10:46, 15 April 2015
no edit summary
# then rename the whole batch to something more intelligent
rename 's/E-Statement_/2014_ifs_/' E-Statement*
# turn on extended globbing
shopt -s extglob
# now you should be able to see the files you want
ll 2014_ifs_??.pdf
# use pdftk to combine them
# and delete the monthly statement clutter
rm 2014_ifs_??.pdf
</source>
You don't need to use extended globbing <ref>http://mywiki.wooledge.org/glob </ref>, but if you did, you'd be able to use patterns like
<source lang="bash">
# turn on extended globbing
shopt -s extglob
# everything but the condensed pdf
ll 2014_ifs_!(condensed).pdf
# unset
shopt -u extglob
</source>
 
</source>{{References}}
[[Category:Tools]]
4,558

edits

Navigation menu