のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

android adb shellでのデフォルト alias一覧

#alias
hash    ='alias -t'
login   ='exec login'
nohup   ='nohup '
source  ='PATH=$PATH:. command .'
type    ='whence -v'

############################
# fc関連
history ='fc -l'  <=過去のコマンド
r       ='fc -e -' <=コマンドをもう一度行う。

############################
# typeset関連
autoload  ='typeset -fu'
functions ='typeset -f' <=定義された全ての関数の内容を表示
integer   ='typeset -i'
local     = typeset
nameref   ='typeset -n'

############################
# ls 関連
l  = ls
la = 'l -a'
ll = 'l -l'
lo = 'l -a -l'

nohup ログアウトした後もコマンドを実行し続ける

whenceコマンド(文字列をコマンドとした場合の解釈を表示する)

Typeset 組込みコマンド