30
.bashrcに追加できる便利なものは何ですか?[閉まっている]
あなたなしでは生きていけないものがありますか?ここに私が使用しているものがあります(「ディスクスペース」と「フォルダ」は特に便利です)。 # some more ls aliases alias ll='ls -alh' alias la='ls -A' alias l='ls -CFlh' alias woo='fortune' alias lsd="ls -alF | grep /$" # This is GOLD for finding out what is taking so much space on your drives! alias diskspace="du -S | sort -n -r |more" # Command line …