mirror of
https://github.com/videolan/vlc.git
synced 2024-11-29 04:45:36 +08:00
10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
export QTDIR=/opt/QtPalmtop/sharp
|
|
export LD_LIBRARY_PATH=.:/usr/X11R6/lib:/opt/QtPalmtop/sharp/lib:/usr/lib/vlc
|
|
if [ "$*" = "" ] ; then
|
|
/usr/bin/vlc udp://@:1234
|
|
else
|
|
/usr/bin/vlc $*
|
|
fi
|
|
|