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.
#!/bin/bash find *.txt | wc -l;
これにより、txtファイルの数がわかります。私のプログラムでは、この出力を「カウント」という変数に入れるにはどうすればよいですか。
#!/bin/bash count=$(find *.txt | wc -l)