QGIS/scripts/fix_allows_to.sh
2018-06-19 16:11:09 +02:00

84 lines
1.7 KiB
Bash
Executable File

#!/usr/bin/env bash
IFS=:
cat <<EOF |
access:accessing
adapt:adapting
application:applying
apply:applying
change:changing
choose:choosing
combine:combining
continue:continuing
control:controlling
convert:converting
create:creating
customize:customizing
define:defining
determine:determining
disable:disabling
discard:discarding
display:displaying
drop:dropping
edit and save python file:editing and saving python files
edit:editing
enable or disable:enabling or disabling
enable:enabling
enter:entering
estimate:estimating
exit:exiting
export:exporting
extract:extracgin
filter:filtering
fix:fixing
first sub-sample:sub-sampling first
fuse:fusing
generate:generating
handle:handling
input:inputting
insert:inserting
interactively manipulate:interactive manipulation
manage:managing
map:mapping
move:moving
ortho-rectify:ortho-rectifying
parametrize:parametrizing
parse:parsing
perform:performing
performs:performing
reduce:reducing
remove:removing
render:rendering
reproject and rasterize:reprojecting and rasterizing
reproject:reprojecting
restrict:restricting
retrieve:retrieving
save:saving
scroll:scrolling
select:selecting
selecting:selecting
set:setting
shorten:shortening
simplify:simplifying
speed-up:speeding up
split:splitting
store:storing
suppress:suppressing
use:using
write:writing
you to show:showing
compute:computing
optimize:optimizing
check:checking
quickly edit:quick editing
EOF
while read v i; do
echo "$v => $i"
git grep -l "[aA]llows to $v" >files
[ -s files ] && xargs perl -i.bak -pe "s/([aA])llows to $v\b/\$1llows $i/g" <files
done
git grep "[aA]llows to" | sed -e 's/^.*[aA]llows to \([^ ]* [^ ]*\) .*$/\1/' | sort -u
#git grep "allows$"
git checkout ChangeLog