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.
このコマンドを使用してhtmlファイルをダウンロードしようとしています:
wget -r --page-requisites dowload.html https://www.mysite.com/docs//#!Mydocs;location=page1
これにより、次のエラーが表示されます。
-bash: !MyDocs: event not found
# を含むアドレスに wget を使用するにはどうすればよいですか?
Encase the URL in single quotes. This stops the shell from parsing the contents.
wget -r --page-requisites 'dowload.html https://www.mysite.com/docs//#!Mydocs;location=page1'