From LedHed's Wiki
Jump to: navigation, search
(Created page with "== Windows == for %f in (*.txt) do type "%f" >> new.txt == Unix == cat *.txt > new.txt Category:WindowsCategory:LinuxCategory:FreeBSD")
 
(No difference)

Latest revision as of 23:45, 8 January 2013

Windows

for %f in (*.txt) do type "%f" >> new.txt


Unix

cat *.txt > new.txt