So I have this bash command:
sqlite3 ${SUMAN_DATABASE_PATH} "CREATE TABLE suman_run_info (run_id INTEGER, suman_id INTEGER, suite_id INTEGER, test_id INTEGER,
name TEXT, value TEXT);" >> ${SUMAN_DEBUG_LOG_PATH}
I want to wrap it manually in my editor. However since it's mostly a string, I can't seem to wrap it with the \ character.
A.k.a, this is not really going to work, tmk:
sqlite3 ${SUMAN_DATABASE_PATH} "CREATE TABLE suman_run_info \ (run_id INTEGER, suman_id INTEGER, suite_id INTEGER, test_id INTEGER,
name TEXT, value TEXT);" >> ${SUMAN_DEBUG_LOG_PATH}
How can I wrap this bash command so that it fits within 100 columns or whatever?
I am looking for something like this:
sqlite3 ${SUMAN_DATABASE_PATH} "CREATE TABLE suman_run_info (run_id INTEGER,
suman_id INTEGER, suite_id INTEGER, test_id INTEGER,
name TEXT, value TEXT);" >> ${SUMAN_DEBUG_LOG_PATH}
I have read that adjacent strings should auto-concat, so maybe this works?
sqlite3 ${SUMAN_DATABASE_PATH} "CREATE TABLE suman_run_info"
"(run_id INTEGER, suman_id INTEGER, suite_id INTEGER, test_id INTEGER,"
"name TEXT, value TEXT);" >> ${SUMAN_DEBUG_LOG_PATH}
'foo'"bar"baz, but that's not actually two (or three) adjacent strings at all; it's one string composed with characters quoted in three different styles.