I have 4 files
sitefiles.tar.gz.splitaa
sitefiles.tar.gz.splitab
sitefiles.tar.gz.splitac
sitefiles.tar.gz.splitad
I need a command or program that works like “cat” on linux. that way I can join all the 4 files into 1 file
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Windows Powershell supports
cat.However you can do it even simpler, using a normal console:
This will append all files into
sitefiles.tar.gz.If you want to join specific files, or if you want to append them in a specific order (default is sorting the filenames alphabetical) append them using
+: