13,007
回編集
細 (文字列「__FORCETOC__」を「{{#seo: |title={{PAGENAME}} : Exploring Electronics and SUSE Linux | MochiuWiki |keywords=MochiuWiki,Mochiu,Wiki,Mochiu Wiki,Electric Circuit,Electric,pcb,Mathematics,AVR,TI,STMicro,AVR,ATmega,MSP430,STM,Arduino,Xilinx,FPGA,Verilog,HDL,PinePhone,Pine Phone,Raspberry,Raspberry Pi,C,C++,C#,Qt,Qml,MFC,Shell,Bash,Zsh,Fish,SUSE,SLE,Suse Enterprise,Suse Linux,openSUSE,open SUSE,Leap,Linux,uCLnux,Podman,電気回路,電子回路,基板,プリント基板 |description={{PAGENAME}} - 電子回路とSUSE Linuxに関する情報 | This pag…) |
|||
88行目: | 88行目: | ||
# ~/hogeディレクトリ内の.c拡張子のファイル群を、~/piyoディレクトリにコピーしている | # ~/hogeディレクトリ内の.c拡張子のファイル群を、~/piyoディレクトリにコピーしている | ||
find ~/hoge -name "*.c" -exec cp {} ~/piyo \; | find ~/hoge -name "*.c" -exec cp {} ~/piyo \; | ||
<br> | |||
==== chmodコマンド ==== | |||
findコマンドは、chmodコマンドと組み合わせて使用することができる。<br> | |||
# ディレクトリのパーミッションを755に変更 | |||
find . -type d -exec chmod 755 {} \; | |||
find . -type d -print -exec chmod 755 {} \; # より安全に実行する場合 | |||
説明: | |||
-type d | |||
ディレクトリのみを検索する | |||
-exec chmod 755 {} \; | |||
見つかった各ディレクトリに対してパーミッションを755に変更する | |||
{} | |||
findで見つかったディレクトリのパスが入る | |||
\; | |||
execオプションの終了を示す | |||
<br><br> | <br><br> | ||