deepin 自定义命令(shell脚本) 并启动应用(copytranslator)

注重版权,若要转载烦请附上作者和链接

作者:Joshua_yi

链接:https://blog.csdn.net/weixin_44984664/article/details/107999791

文章目录

    • 效果
    • 1、下载copytranslator
    • 2、新建customsh
    • 3、新建copytranslator.sh
    • 4、更改copytranslator.sh的属性
    • 5、添加别名
    • 6、使用


效果

先看一下结果
deepin 自定义命令(shell脚本) 并启动应用(copytranslator)_第1张图片

1、下载copytranslator

我们常用linux里的命令来启动应用这里以神器 copystranslor为例

  • 下载地址 https://copytranslator.github.io/download/
  • 说明手册https://copytranslator.github.io/guide/

我这里使用的是deepin

将下载好的copytranslor放到自己的路径里
deepin 自定义命令(shell脚本) 并启动应用(copytranslator)_第2张图片

2、新建customsh

然后在home里新建文件夹customsh(可以自己定义)

mkdir customsh

在这里插入图片描述

3、新建copytranslator.sh

在该文件夹里新建copytranslator.sh文件(名称自己可以随便定义)

cd customsh/
gedit copytranslator.sh

deepin 自定义命令(shell脚本) 并启动应用(copytranslator)_第3张图片
appimage文件的位置写到sh文件里

/home/joshua/Soft/CopyTranslate/copytranslator-9.0.2.AppImage

之后保存

4、更改copytranslator.sh的属性

编辑该文件的属性
deepin 自定义命令(shell脚本) 并启动应用(copytranslator)_第4张图片
允许执行
deepin 自定义命令(shell脚本) 并启动应用(copytranslator)_第5张图片

5、添加别名

  • 配置只对自己生效的别名则编辑~/.bashrc文件
  • 配置全局生效的别名则编辑/etc/profile文件
    添加的内容都一样
sudo gedit ~/.bashrc

deepin 自定义命令(shell脚本) 并启动应用(copytranslator)_第6张图片
把刚才新建的copytranslator.sh的路径加进去

# copytranslator
alias copytranslator="~/customsh/copytranslator.sh"

最后使配置生效

source  ~/.bashrc

6、使用

deepin 自定义命令(shell脚本) 并启动应用(copytranslator)_第7张图片

你可能感兴趣的:(Linux,linux,ubuntu)