Can someone explain "<in the following code?
mysql test<<E0Q Select * from signins
I would try to find it myself, but the characters are hard to find ...
Thanks Dan
This is the “file here”, see http://www.linuxjournal.com/article/3771
Here's the docs or a way to easily connect large text blocks to a program.
. , , Linux From Scratch, heredocs cat (>). :
cat
>
[email protected] ~$ cat >test.c <<EOF int main(void){return 0;} EOF [email protected] ~$
< < EOF EOF `test.c ', , EOF, .
. :
This type of redirection instructs the shell to read input from the current source until a line containing only word (with no trailing blanks) is seen. All of the lines read up to that point are then used as the standard input for a command. The format of here-documents is: <<[-]word here-document delimiter
echo read, , "", . -doc -, :
echo
read
read -a var <<< "some text"
, , "-", -doc.
. this this.
Source: https://habr.com/ru/post/1726089/More articles:PyTables problem - different results when repeating over a subset of a table - pythonOracle Tuning / Analysis Tables - performancePreventing RegEx freeze in big matches - pythonWhat is the easiest, most portable way to send an email to elisp? - emailСамый простой способ создать список упорядоченных номеров в С#? - c#Is there a way to specify $ GlobalRev $ in a file using Subclipse for Eclipse - eclipseNSSavePanel: Suppression of "replacement confirmation"? dialogue - cocoaЗамена объединенных ресурсных словарей при загрузке приложения Silverlight - c#How to get a list of subscribers for an event at runtime? - c #The F # line operator breaks on guides - f #All Articles