🙆

[Python] オリジナルコマンドを実装する

2024/07/31に公開

はじめに

Pythonで書いた処理を自分のマシン専用でCLIツールとして利用したい
例として、引数にhelloという文字列を返すコマンドを実装する

hello.py
#! /usr/bin/env python3

import sys
arg=sys.argv[1]

print(hello+arg)

手順

  1. 実行権限を付与する
  2. パスを通す

実行権限を付与する

% chmod u+x hello.py

パスを通す

% echo export PATH="$PATH:$HOME/hello.py/" >> ~/.zshrc
% source ~/.zshrc

やってみる

% hello yaa

helloyaa

参考

https://qiita.com/KizashiTakata/items/3c0e632db7b662f88f57
https://qiita.com/toshid1997/items/1699331e526cb90615df

GitHubで編集を提案

Discussion