diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/migrate_to_folder.sh | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/migrate_to_folder.sh b/bin/migrate_to_folder.sh new file mode 100755 index 0000000..93e64f2 --- /dev/null +++ b/bin/migrate_to_folder.sh @@ -0,0 +1,19 @@ +#!/bin/bash +echo "Migration tool 2: please run only once" +echo "Moves your news to a news folder" +FILES=$(ls -1 | grep 202) +if [ -d news ] +then +	echo "news directory exists"; +else +	mkdir news; +fi +for file in $FILES; do +	if [ -f $file ]  +	then +		new_name="news/"$file +		mv $file $new_name +		git add $file $new_name +		git commit -m "Moved $file to news folder"; +	fi +done  | 
