이 DB에 액세스하고 싶습니다. 그리고 이것을 사용하여 SQLite DB에 액세스합니다. sqlite3 .mozilla/firefox/profile_name/places.sqlite
이 DB에 대해 실행하고 출력을 텍스트 파일로 저장하려는 쿼리는 SELECT moz_places.url FROM moz_places
어떻게해야합니까?
답변
- 시험
man sqlite
- 당신은 찾을 수
sqlite
와 같은 예상하는에게 구문을sqlite [options] filename [SQL]
- 그런 다음이 작업을 수행
sqlite [options] filename [SQL] > file_with_results.txt
하면 결과가file_with_results.txt
당신이 쓴 것에서, 나는 당신이 필요하다고 믿습니다.
sqlite .mozilla/firefox/profile_name/places.sqlite "SELECT moz_places.url FROM moz_places;" > file_with_results.txt