8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function main() {
|
|
jar cvfm CSVViewer.jar manifest.txt com/itdominator/csvviewer/*.class
|
|
chmod +x CSVViewer.jar
|
|
}
|
|
main;
|