Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
14 lines (11 sloc)
294 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
#!/bin/bash | |
# | |
# WattzAp Linux Startup File | |
# 6th May 2015 | |
# | |
SEP=":" | |
LIBS=$(find lib -maxdepth 1 -name "*.jar" -print | tr '\n' ':') | |
LIBS="lib:properties:$LIBS" | |
echo $LIBS | |
java -Djna.library.path=/Applications/VLC.app/Contents/MacOS/lib -cp $LIBS -Dlog4j.logger.level=INFO com.wattzap.Main |