Posted October 26, 2021
low rated
Magmarock: Hey, I wanted to talk to you more about this line here.
lgogdownloader --download --game '^(tyrian_2000|beneath_a_steel_sky|the_witcher)$'
Is there a more vertical way of writing that down?
Sude: Use backslash to escape the newline and split the string to multiple lines lgogdownloader --download --game '^(tyrian_2000|beneath_a_steel_sky|the_witcher)$'
Is there a more vertical way of writing that down?
lgogdownloader --download --game \
'^('\
'tyrian_2000'\
'|beneath_a_steel_sky'\
'|the_witcher'\
')$'
https://www.dropbox.com/s/m5h9f8zs0wcm29c/Download_Faves-2.sh?dl=0