download file using batch process

How to do the batch download
1. Copy link location of file that you want to download, eg: http://nodai.ac.jp/abcd.txt or anything
2. Make new file with .sh (shell) extension, can be made using notepad or another text editor, eg: test.sh
3. inside the test.sh file If you are using linux/cygwin type wget if you want to download more than one file, just hit enter after the first link and type wget if you are using machintosh change wget with curl -O , eg: curl -O http://nodai.ac.jp/abcd.txt
4. open terminal/cygwin, and then change directory *cd* to the place you saved the .sh file and then hit enter (eg: assume that the file is located in desktop under the download folder, so you need to type cd /Desktop/download/)
5. Then make sure that the file test.sh is in that directory (folder) by typing ls and hit enter, ls is used to list the file in that directory
6. If the file is there, in the terminal/cygwin type chmod a+x test.sh, chmod: change mode, a+x: all user plus x, and the name of file
7. Type ./test.sh, command of ./ has function to process the executable file
8. Within seconds the terminal/cygwin will download your file automatically, the file will be downloaded to the directory where .sh is belong to, in this case the file will be downloaded to /Desktop/download

バッチ処理でのファイルダウンロード
1。ダウンロードファイルのリンク先のコピー、例 http://nodai.ac.jp/abcd.txt
2。.sh ファイルを作る、.shファイルはノートパッドあるいはテキストエディターで作れる。例 test.sh
3。test.sh の中に タイプすることが必要、リナクス/シッグウィンを使う場合は wget <リンク先ファイル>、macを使う場合は wget の代わりに curl -O をタイプする、例 curl -O http://nodai.ac.jp/abcd.txt
4。ターミナル/シッグウィンを開き、test.sh のディレクトリにディレクトリチェンジを行う、例もしそのファイルが/Desktop/download/に存在したら cd /Desktop/download/
5。そのディレクトリの内容を確認 ls をタイプし、エンターたたく。
6。ファイル確認されたら、chmod a+x test.sh をタイプする。
7。終わったら ./test.sh をタイプする。
8。ダウンロードが始まる。ダウンロードファイルは /Desktop/download/ に保存される。