What is the role of the $symbol in the red circle in the picture below linux curl?

clipboard.png

Apr.07,2022

Strings in the form of
$'string' are specially handled. The string is expanded to string and the backslash and the following characters are replaced like the C language.

for example, the newline character \ n will be used as a newline character when $'\ n' is used, and '\ n' or "\ n" will be treated as a normal string. Try

.
[root@chengqm test]-sharp echo $'\n'


[root@chengqm test]-sharp echo '\n'
\n
[root@chengqm test]-sharp echo "\n"
\n

Bash escape character

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b35bfc-2bfd6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b35bfc-2bfd6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?