我是stackoverflow的新手,所以如果我没有在正确的位置发帖,请道歉。 请帮我这个: 我想从latex生成的pdf中启动一个shell脚本。我在互联网上搜索所有可能性,但没有运气。 我的tex文件看起来像:
\documentclass{beamer}
\usepackage{hyperref}
\begin{document}
\begin{frame}
\href{run:/home/ankit/Desktop/document/a.sh}{Launch the script}
\end{frame}
\end{document}
shell脚本" a.sh"看起来像这样:
#!/bin/bash
gnome-terminal --tab -e "bash -c 'ls; exec $SHELL'"
我已经完成了:
1. chmod + x a.sh
2.单击单击改变* .sh的行为以在终端中执行
3.尝试过adobe reader和evince for linux / ubuntu
4.当我点击evince时,我看不到任何东西,但忙碌的光标标志会在一段时间后消失,但是当从终端启动时显示为evince document.pdf我看到此错误消息:
(nautilus-autorun-software:4318):警告**:无法找到URI设备:包含挂载不存在。
请帮忙。 提前谢谢。