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.
エラーを理解できなかったので、ここで助けが必要です。
read input echo -e "$input" | cut -c4- cd "$input" | cut -c4-
だから私は入力しますcd test、エコー出力は正しいですtest。
cd test
test
ディレクトリを変更したいのですが、cd cd test.
cd cd test
どんな助けでも大歓迎です。
必要なものは次のとおりです。
cd $(echo -e "$input" | cut -c4-)
このように行うこともできます(bashの「herestrings」を参照)
cd $(cut -c4- <<<$input)