Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私~/.bashrcの中には、次の関数があります。
~/.bashrc
function sayHi() { echo "hi, $@" }
そしてRubyで私はしたい:
`sayHi "friend"`
ただし、sayHirubyが実行するコンテキストexecやsystem。
sayHi
exec
system
Rubyで関数を使用するにはどうすればよい.bashrcですか?
.bashrc
あなた.bashrcはインタラクティブシェルに対してのみ実行されます。Rubyでバッククォートを使用してコマンドを実行すると、対話型シェルではコマンドが実行されません。
を実行すると、インタラクティブシェルを強制できますbash -i。たとえば、対話型シェルでコマンドを実行するには、次を使用します。
bash -i
`bash -ic 'sayHi "friend"'`