8 lines
70 B
Bash
8 lines
70 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
function main() {
|
||
|
cd bin/
|
||
|
java Bookshelf
|
||
|
}
|
||
|
main;
|