LoginSignup
23
17

More than 5 years have passed since last update.

コマンドの実行結果を入れ子にする 

Last updated at Posted at 2013-01-17

バッククォートを使うと無理だけど、

: pwdの結果をsedで置換した結果を…
cd /Users/foo
echo parent dir=`echo `pwd` | sed -e "s/foo//"`
zsh: parse error near `|'
zsh: parse error in command substitution

$()を使うと、

echo parent dir=$(echo `pwd` | sed -e "s/\/foo//")
parent dir=/Users

: pwdの結果をsedで置換した結果をsedで置換し...
echo root dir=$(echo $(echo `pwd` | sed -e "s/\/foo//") | sed -e "s/Users//")
root dir=/

何重にでもできる。

23
17
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
23
17