Ubuntu 创建 Android Studio 快捷启动方式

前端之家收集整理的这篇文章主要介绍了Ubuntu 创建 Android Studio 快捷启动方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我的 Ubuntu 抽风,每次启动都需要 sudo 权限,快捷方式也不好用,所以简单三步启动无忧:
1.创建 sh 文件

touch as.sh
vim as.sh

2.添加 shell 脚本

#!/bin/bash
android_studio_path="<your android studio path>/android-studio/bin/studio.sh"
sudo sh $android_studio_path

3.更改权限

sudo chmod +x as.sh

4.启动

sh ./as.sh
原文链接:https://www.f2er.com/ubuntu/349460.html

猜你在找的Ubuntu相关文章