- 2024/11/21
- Category :
[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
ステップアップしていくブログです。
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
$ ls . .. dst src $ ls src . .. a.txt b.txt c.txt $ ls dst . ..
$ rsync -avh src/ dst sending incremental file list ./ a.txt b.txt c.txt sent 226 bytes received 72 bytes 596.00 bytes/sec total size is 6 speedup is 0.02 $ ls dst . .. a.txt b.txt c.txt
$ rsync -avh src dst sending incremental file list src/ src/a.txt src/b.txt src/c.txt sent 240 bytes received 73 bytes 626.00 bytes/sec total size is 6 speedup is 0.02 $ ls dst . .. src $ ls dst/src/ . .. a.txt b.txt c.txt
$ man -S 1 ls
$ man -aw echo /usr/share/man/man1/echo.1 /usr/share/man/man3/echo.3x
$ chmod -R 777 .
$ find . -type f | xargs chmod 777
名前 xargs - 標準入力からコマンドラインを作成し、それを実行する 書式 xargs [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]] [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-str]] [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive] [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs] [--max-args=max- args] [--no-run-if-empty] [--version] [--help] [command [initial-arguments]] 説明 このマニュアルページは GNU 版 xargs に関して記述したものである。 xargs はまず標準入力から空白または改行で区切られた文字列群を読み込む (空白はダブルクォー テーション・シングルクォーテーション・バックスラッシュによってプロテクトできる)。そして command (デフォルトは /bin/echo) に文字列群を続けたコマンドライン を実行する。 initial-arguments が指定されていれば、 command と標準入力から渡された文字列の間に、 command への引き数として渡される。標準入力の空行は無視さ れる。
$ find . -type d
sudo -u username /hoge/scriptと書いていましたが、エラー発生。
sudo: sorry, you must have a tty to run sudoというエラーメッセージが出ていました。
su - username -c "/hoge/script"で、めでたく一般ユーザ権限で実行させることに成功しました。