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.
我想将目录的文件名复制到电子表格中。我不关心文件的内容,只关心名称。我将使用此命令,以便为特定应用程序提供详细的文档。
我目前有: cp //server_name/path/* /d/path
我正在寻找类似 >> 或 -print 和文件名的东西来创建和保存存储在目录中的文件的名称;IE,
文件名 = file_list.csv
文件内容:
word.exe notepad.exe 等等等等等等
ls your/dir/path/here > your/file/path/here
DEST_PATH=/d/path/file_list.csv cd <directory-with-file-names> for f in * do echo "$f" >> $DEST_PATH done