逆引きUNIXコマンド/sudoでリダイレクトや複数のコマンドを実行したい場合の記述方法
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
#navi(../)
* sudoでリダイレクトや複数のコマンドを実行したい場合の記...
一般ユーザに書き込み権限が無いディレクトリでsudoコマンド...
sakura@ubuntu:/var/www$ sudo echo "hello world" > hello....
-bash: hello.txt: 許可がありません
本記事はsudoコマンドでリダイレクトしたり、複数のコマンド...
#contents
#htmlinsertpcsp(linux_ads_top.html,linux-sp.html)
* 関連記事 [#b66be8fc]
-[[Debian/一般ユーザーをsudoコマンドにて管理者として動作...
-[[Ubuntu/Ubuntu Serverで管理者権限があるユーザーを追加す...
-[[Ubuntu/追加済み一般ユーザーを管理者権限に変更する方法...
-[[Ubuntu/追加済み一般ユーザーを管理者権限に変更する方法...
-[[Ubuntu/Ubuntuでrootになる方法]]
-[[sudoコマンドのパスワードを自動的に入力する方法>逆引きU...
* man sudoで確認すると書いてある [#h8ae8610]
manコマンドでsudoを見ると書いてありました。~
以下、man sudoの抜粋です。
To make a usage listing of the directories in the ...
Note that this runs the commands in a sub-shell to...
redirection work.
$ sudo sh -c "cd /home ; du -s * | sort -rn > USA...
つまり、リダイレクトを可能にするにはsh -cを利用しコマンド...
sudo sh -c "echo 'hello world' > hello.html"
実際に実行した時の出力です。
sakura@ubuntu:~$ cd /var/www/
sakura@ubuntu:/var/www$ sudo sh -c "echo 'hello world' >...
[sudo] password for sakura:
sakura@ubuntu:/var/www$ ls hello.html
hello.html
つまり、sudoでリダイレクトやsudoで複数コマンドを利用した...
sudo sh -c "コマンド..."
以上、sudoでリダイレクトや複数コマンドを実行する方法でし...
#htmlinsertpcsp(linux_ads_btm.html,linux-sp.html)
終了行:
#navi(../)
* sudoでリダイレクトや複数のコマンドを実行したい場合の記...
一般ユーザに書き込み権限が無いディレクトリでsudoコマンド...
sakura@ubuntu:/var/www$ sudo echo "hello world" > hello....
-bash: hello.txt: 許可がありません
本記事はsudoコマンドでリダイレクトしたり、複数のコマンド...
#contents
#htmlinsertpcsp(linux_ads_top.html,linux-sp.html)
* 関連記事 [#b66be8fc]
-[[Debian/一般ユーザーをsudoコマンドにて管理者として動作...
-[[Ubuntu/Ubuntu Serverで管理者権限があるユーザーを追加す...
-[[Ubuntu/追加済み一般ユーザーを管理者権限に変更する方法...
-[[Ubuntu/追加済み一般ユーザーを管理者権限に変更する方法...
-[[Ubuntu/Ubuntuでrootになる方法]]
-[[sudoコマンドのパスワードを自動的に入力する方法>逆引きU...
* man sudoで確認すると書いてある [#h8ae8610]
manコマンドでsudoを見ると書いてありました。~
以下、man sudoの抜粋です。
To make a usage listing of the directories in the ...
Note that this runs the commands in a sub-shell to...
redirection work.
$ sudo sh -c "cd /home ; du -s * | sort -rn > USA...
つまり、リダイレクトを可能にするにはsh -cを利用しコマンド...
sudo sh -c "echo 'hello world' > hello.html"
実際に実行した時の出力です。
sakura@ubuntu:~$ cd /var/www/
sakura@ubuntu:/var/www$ sudo sh -c "echo 'hello world' >...
[sudo] password for sakura:
sakura@ubuntu:/var/www$ ls hello.html
hello.html
つまり、sudoでリダイレクトやsudoで複数コマンドを利用した...
sudo sh -c "コマンド..."
以上、sudoでリダイレクトや複数コマンドを実行する方法でし...
#htmlinsertpcsp(linux_ads_btm.html,linux-sp.html)
ページ名: