在终端外运行时Bash脚本无法正常工作

时间:2011-06-21 18:39:20

标签: bash ubuntu gnupg zenity

当以图形方式启动时(通过双击脚本图标并选择运行),此脚本无法正常运行,但是,如果从终端调用,则运行正常;不会保存文件或从现有文件加载内容。请帮忙!谢谢。

#!/bin/bash

# This script provides a simple and secure messaging system for users not
# familiar with gpg or using the terminal. The idea is to keep sensitive
# plaintext files off one's computer.

zenity --question --text="Select operation:" --ok-label="Compose" --cancel-label="Read"
if [[ $? == 0 ]]; then
    usr=$(zenity --entry --text="Sender Key ID:")
    rec=$(zenity --entry --text="Recipient Key ID:")
    pwd=$(zenity --password)
    outfile=$(zenity --file-selection --save --confirm-overwrite)
    zenity --text-info --editable | gpg -aseu $usr -r $rec --passphrase $pwd --cipher-algo AES256 -o $outfile
else
    infile=$(zenity --file-selection)
    pwd=$(zenity --password)
    gpg -d --passphrase $pwd $infile | zenity --text-info --height=600 --width=800
fi

1 个答案:

答案 0 :(得分:1)

错误的可能原因是,当您通过交互式shell执行时(因此获取.bashrc)并双击(非交互式,而非来源.bashrc

您可以通过执行env > from_terminalenv > double_click然后使用diff或类似内容来比较环境。

您还可以(在完成上述操作后)在脚本中查看源代码from_terminal,看它是否适用于终端环境。正如其中一条评论中所述,set -vx是您的朋友。