1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2025-04-21 12:27:27 +03:00
Files
openwrt-packages/nupdf/files/nupdf.sh
2010-11-01 21:59:09 +08:00

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"