initial
This commit is contained in:
10
update_module.sh
Executable file
10
update_module.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ "$#" -ne 1 ]; then
|
||||
echo "Usage: $0 <new module name>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
new_module=$1
|
||||
|
||||
find . -type d -name .git -prune -o -type f -exec sed -i '' -e "s/vctp/${new_module}/g" {} \;
|
Reference in New Issue
Block a user