aboutsummaryrefslogtreecommitdiff
path: root/bin/migrate_to_folder.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/migrate_to_folder.sh')
-rwxr-xr-xbin/migrate_to_folder.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/bin/migrate_to_folder.sh b/bin/migrate_to_folder.sh
deleted file mode 100755
index 93e64f2..0000000
--- a/bin/migrate_to_folder.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/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