BEIKE blog

備忘録です

2022-05-01から1ヶ月間の記事一覧

メモ ディレクトリ内にある全てのファイルに拡張子を付与する

ls | awk '{print $1 " " $1 ".msg"}' | xargs -L 1 mv

メモ ubuntu エイリアス

if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi if [ -f /etc/bash_completion.d/git-prompt ]; then export PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w$(__git_ps1)\[\033[00m\](\t)\$…