⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ishdecrypt

📁 linux下的E_MAIL客户端源码
💻
字号:
#!/bin/sh## Usage: ishdecrypt [a|d] input-file## Options:#	a: authenticate digital signature#	d: decrypt## Description:# 	Passes the input file through pgp#ECHO=echousage(){   $ECHO ""   $ECHO "Usage: ishdecrypt [a|d] input-file"   $ECHO "   a    : authenticate digital signature"   $ECHO "   d    : decrypt"   $ECHO ""   $ECHO "*** Press return to continue ***"   read ANS}## Check arguments#if [ $# -eq 0 ]; then   usage   exit 1fiARGS="-m"case $1 in   a|d) shift;;esac## Make sure there is a file name#if [ -z "$1" ]then   usage   exit 1fi## Run the command and save the status#$ECHO "pgp $ARGS $*"pgp $ARGS $*PGPSTAT=$?## Allow user to confirm#$ECHO ""$ECHO ""$ECHO "*** Press return to continue ***"read ANS## Display signed data if present#if [ ! -z $2 ]then   if [ ! -z $PAGER ]   then      $PAGER $2   else      more $2   fifiexit $PGPSTAT

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -