我正在Zeppelin学习数据分析,我是一名机械工程师,所以这超出了我的专业知识。
我正在尝试使用包含urls,test2.txt的文件下载两个csv文件。当我运行它时,我没有输出,但也没有错误消息。我已经在屏幕截图中添加了一个链接,显示了我的代码和结果。
当我进入Ambari Sandbox时,我找不到任何创建的文件。我假设文件所在的目录也是csv文件的下载位置。我也尝试过使用-P而没有运气。我已经检查过男人wget,但没有帮助。
所以我有几个问题:
%sh
wget -i /tmp/test2.txt
答案 0 :(得分:0)
%sh
# list the current working directory
pwd # output: home/zeppelin
# make a new folder, created in "tmp" because it is temporary
mkdir -p /home/zeppelin/tmp/Folder_Name
# change directory to new folder
cd /home/zeppelin/tmp/Folder_Name
# transfer the file from the sandbox to the current working directory
hadoop fs -get /tmp/test2.txt /home/zeppelin/tmp/Folder_Name/
# download the URL
wget -i test2.txt