Skip to content

Commit

Permalink
Adds shell and profile for adb
Browse files Browse the repository at this point in the history
  • Loading branch information
csjamesdeng committed Nov 29, 2017
1 parent 37bfb3c commit 7ece724
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions adb/adb_profile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

. /etc/profile

alias ls='ls --color=no'
9 changes: 9 additions & 0 deletions adb/adb_shell
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

export ENV="/etc/adb_profile"

if [ x$1 = x"-c" ] ; then
/bin/sh -c "$2"
else
/bin/sh
fi

0 comments on commit 7ece724

Please sign in to comment.