7 lines
149 B
Bash
Executable File
7 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! $1 ]; then
|
|
echo "Usage: $0 <versionnumber>"
|
|
exit 1
|
|
fi
|
|
mv view/target/scipro2.war view/target/scipro2##$(printf "%06d" $1).war
|