Transcripts
Start/Stop and enumerate transcripts.
Start/Stop Transcript
script surveyTranscript.txt
exit
ends the recording
Enumerate Transcripts
Command
Description
find / -name "*.txt" 2>/dev/null
Searches the entire filesystem for text files, which might include transcript files.
locate *.txt
Uses the locate
database to quickly find text files, potentially including transcripts.
grep -ri "Session Start" /file.txt
Recursive case-insensitive search for "Session Start" which can indicate the beginning of a transcript.
ls -ltr /path/to/directory/*.txt
Lists text files in a specified directory in reverse chronological order, helping to identify recently created or modified transcript files.
Last updated
Was this helpful?