2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/rs

10 lines
185 B
Plaintext

# reshape data: number of rows and columns
jot 36 | rs 4 9
# 0 is a dummy value for either the row or column count
# (4 columns)
jot 36 | rs 0 4
# transpose output
jot 36 | rs -t 0 4