1
0
Disbranĉigi 0

Removed hypothetical alg. notation support

This commit is contained in:
Jaidyn Ann 2017-03-30 23:24:38 -05:00
parent 3a0a3bc2cd
commit c9247b0452

View File

@ -8,15 +8,10 @@
##################### #####################
na=0 na=0
algebraic_notation=0
force=0 force=0
for argument in $@ for argument in $@
do do
case $argument in case $argument in
-a)
na=1
algebraic_notation=1
;;
-f) -f)
force=1 force=1
;; ;;
@ -28,7 +23,6 @@ do
else else
if echo $argument | grep "," > /dev/null if echo $argument | grep "," > /dev/null
then then
algebraic_notation=0
move=$argument move=$argument
else else
file=$argument file=$argument
@ -39,8 +33,6 @@ do
done done
if [ $algebraic_notation -eq 0 ]
then
origin=$(echo $move | awk -F\- '{print $1}') origin=$(echo $move | awk -F\- '{print $1}')
dest=$(echo $move | awk -F\- '{print $2}') dest=$(echo $move | awk -F\- '{print $2}')
if grep $dest $file > /dev/null if grep $dest $file > /dev/null
@ -57,4 +49,3 @@ then
sed 's/'"$origin"'/'"$dest"'/' $file > $file.new sed 's/'"$origin"'/'"$dest"'/' $file > $file.new
mv $file.new $file mv $file.new $file
fi fi
fi