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.
Pythonターミナルがそれらにアクセスできるように、12個の異なるgifファイルとjpgファイルをchmod ugo-rwする必要があります。個々のファイルごとにそれを行う必要がありますか?一度に複数のファイルにrw権限を付与することは可能ですか?
オプションの後にchmodへの追加の引数としてすべてのファイルを提供することにより、これらすべてを一度に実行できます。次に例を示します。
chmod ugo+rw file1 file2 file3 file4 ...