11 lines
381 B
Bash
Executable File
11 lines
381 B
Bash
Executable File
#!/bin/sh
|
|
echo "================" >> ai_files.txt
|
|
echo "sqlite database:" >> ai_files.txt
|
|
echo "================" >> ai_files.txt
|
|
./database_schema_display.sh ./readitlater.db > ai_files.txt
|
|
echo "================" >> ai_files.txt
|
|
echo "Nginx config:" >> ai_files.txt
|
|
echo "================" >> ai_files.txt
|
|
cat nginx-config.txt >> ai_files.txt
|
|
./cat_ai_files.sh . >> ai_files.txt
|