작은 바이트의 bash 별명과 함수
1105 단어 discusslinuxbashproductivity
# Set up ls to use my preferences
alias ls='ls -l --color=auto --group-directories-first'
# Quickly add things to a todo-list. Usage: remember milk
alias remember="xargs -I TODO echo \"[ ] TODO\" >> ~/remember <<<"
# I often find files that I don't know what to do with, but I don't want to delete. So I just move them to dev-hell. usage: devhell mysuperniftyfunctionthatiwillneveruse.js
alias devhell='mv -t ~/dev-hell/'
# I don't know how many times I typed this in before I made it an alias. Usage: pid vim
alias pid="ps -aux | grep "
# I use the following function and alias to jump back and forth between home and the current directory.
function home() {
PREVIOUS=$(pwd)
cd ~
}
alias back="cd $PREVIOUS"
# I use Arch Linux, and often download from AUR. Usage: aur chromium
alias aur="xargs -I FILENAME git clone https://aur.archlinux.org/FILENAME <<<"
Reference
이 문제에 관하여(작은 바이트의 bash 별명과 함수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nilkun/a-small-byte-of-bash-aliases-and-functions-3a02텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)