Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
wps-office / usr / bin / wpspdf
Size: Mime:
#!/bin/bash

gBinPath=$(dirname "$0")
if [ -d "${gBinPath}/office6" ]; then
	gInstallPath=${gBinPath}
else
	gInstallPath=/opt/kingsoft/wps-office
fi

gApp=wpspdf

function run()
{

	if [ -e "${gInstallPath}/office6/${gApp}" ] ; then
		{ ${gInstallPath}/office6/${gApp} "$@"; } >/dev/null 2>&1
	else
		echo "${gApp} does not exist!"
	fi
}

function main()
{
	run "$@"
	exit 0
}

main "$@"