mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:58:12 +00:00
5 lines
143 B
Bash
5 lines
143 B
Bash
#!/bin/sh
|
|
|
|
# IFS controls what $(...) (inline evaluate) would split its captured
|
|
# string with. the default is \x0a (i.e. newline).
|
|
IFS="\x0a"
|