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