mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-05 04:50:18 +02:00
d7b3e28f05
Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
12 lines
110 B
Bash
12 lines
110 B
Bash
#!/bin/sh
|
|
|
|
if [ "${1#/}" = "$1" ];
|
|
then
|
|
f=`pwd`/$1;
|
|
else
|
|
f=$1;
|
|
fi;
|
|
|
|
cd /usr/share/nupdf
|
|
./nupdf.bin "$f"
|