Skip to content

Commit

Permalink
Merge pull request #16 from xtetsuji:feature-batcat-alias
Browse files Browse the repository at this point in the history
feat: enable bat command to run batcat installed via the bat package
  • Loading branch information
xtetsuji authored Feb 16, 2025
2 parents 6e82b0a + ae95af3 commit 4d32a0b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ function main {
return 1
fi
install-codespaces-fundamental-commands-by-apt
setup-bat
if ! is-rcm-exist ; then
echo "rcm is not installed" >&2
if is-codespaces ; then
Expand Down Expand Up @@ -229,4 +230,14 @@ function install-codespaces-fundamental-commands-by-apt {
sudo apt-get update && sudo apt-get install -y "${INSTALL_DEB_PACKAGES_IN_CODESPACES[@]}"
}

# bat パッケージを入れた後、batcat コマンドを bat コマンドとして実行できるようにする
function setup-bat {
if ! type bat > /dev/null 2>&1 ; then
echo "bat is not installed" >&2
return 1
fi
mkdir -p ~/.local/bin
ln -s /usr/bin/batcat ~/.local/bin/bat
}

main "$@"

0 comments on commit 4d32a0b

Please sign in to comment.