index.php に取り組んでおり、css フォルダーにある style.css を構成しているとしましょう。コマンドラインを使用して両方のファイルを 1 行でサーバーに転送できますか?
質問する
254 次
1 に答える
0
次の内容の ftp コマンド スクリプト ファイル (例: ftp.txt) を作成することにより、ファイルをアップロードできます。
(username)
(password)
cd /folder-on-server
binary
put c:\myfolder\myfile.jpg
put c:\myfolder\style.css
次に、コマンドラインで
ftp -s:ftp.txt ftp.example.com
基づく: http://wiki.tekkies.co.uk/General_Technical#FTP_using_xp_cmdshell___sql2k
于 2013-10-22T09:52:41.500 に答える