View Single Post
Old 11-11-2016, 02:14 PM   #12
Axanar
Enthusiast
Axanar has read War And Peace ... all of itAxanar has read War And Peace ... all of itAxanar has read War And Peace ... all of itAxanar has read War And Peace ... all of itAxanar has read War And Peace ... all of itAxanar has read War And Peace ... all of itAxanar has read War And Peace ... all of itAxanar has read War And Peace ... all of itAxanar has read War And Peace ... all of itAxanar has read War And Peace ... all of itAxanar has read War And Peace ... all of it
 
Axanar's Avatar
 
Posts: 39
Karma: 66828
Join Date: Feb 2016
Device: Kindle
Hmmmm ...

I wrote a small script that unzips all jar files and grep through them for specific capital letters files in /mnt/us/. USE_ALT_FONTS does not exist in any of the jar files within the /opt/amazon directory.

Code:
for i in `find . -name "*.jar"` ; do
	unzip -p "${i}" | grep -a -o "/mnt/us/[A-Z|_|-]\+"
done | sort | uniq
All above returns is this:

Code:
/mnt/us/CJK_FONT_RAMP
/mnt/us/CONTENT_FONT_RAMP
/mnt/us/CONTENT_INDIC_FONT_RAMP
/mnt/us/DISABLE_FLASH_ON_CHAPTER
/mnt/us/DONT_SHOW_ABOUT_COLLECTION_DIALOG
/mnt/us/DONT_SHOW_COLLECTION_SYNC_DIALOG
/mnt/us/DONT_SHOW_JIT_TUTORIALS
/mnt/us/DONT_USE_CLOUD_INDEX
/mnt/us/FONT_RAMP
/mnt/us/INDIC_FONT_RAMP
/mnt/us/INIT_DUMMY_PROFILES
/mnt/us/INIT_DUMMY_PROFILES_FROM_FILE
/mnt/us/NUM_SCRUBBER_CHUNKS
/mnt/us/READING_TIMER
/mnt/us/RFF_TOU_TIME
/mnt/us/SCRUBBER_POLLING_TIME
/mnt/us/UI_QUERY_VERBOSE
Axanar is offline   Reply With Quote