1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 14:47:47 +00:00

Merge pull request #61 from efx/oneliner-combine-two-files

oneliner: combine two files into one
This commit is contained in:
Darren Schroeder 2021-06-08 15:22:10 -05:00 committed by GitHub
commit f1db80252d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,3 @@
# Combine two files into one
# You can generate `a.json` with something like `range 1..5 | save a.json`
echo (open a.json) (open b.json) | save c.json