mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2025-02-06 22:11:56 +02:00
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"
|