LoginSignup
4
4

More than 5 years have passed since last update.

direnvでエイリアス

Last updated at Posted at 2018-01-05

.direnvrcで

export_function() {
  local name=$1
  local alias_dir=$PWD/.direnv/aliases
  mkdir -p "$alias_dir"
  PATH_add "$alias_dir"
  local target="$alias_dir/$name"
  if declare -f "$name" >/dev/null; then
    echo "#!/usr/bin/env bash" > "$target"
    declare -f "$name" >> "$target" 2>/dev/null
    echo "$name" >> "$target"
    chmod +x "$target"
  fi
}

.envrcで

hoge() {
  コマンドずらずら
}
export_function hoge

参考
https://github.com/direnv/direnv/issues/73

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4