Remove from

remove_from
cut

1 Bash[ | ]

STR="hello\nworld"
echo -e $STR | cut -f1 -dr
# hello
# wo
STR="hello\nworld"
STR2=`echo $STR | cut -f1 -dr`
echo -e $STR2
# hello
# wo

2 See also[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}