• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root in need of a file

might, might not, really dont know

I/O Redirection

but i know that the standard for redirecting output is just >

ampersand doesnt really mean and in that context
if you want something that actually means and in code its && as in

Code:
cat /proc/kallsyms && grep "c010b22c" > /mnt/sdcard/kallsyms
which has another inherent issue anyway... zte jellybean roms dont use mnt anymore they use storage, so youll wanna just do a simple redirect to /sdcard/kallsyms
 
Upvote 0
A single & actually sends the process to the background, and && waits for the first command to complete before moving on to the next. In junkie2100's example, it would actually be better to do

Code:
cat /proc/kallsyms | grep "c010b22c" > /mnt/sdcard/kallsyms

edit: Regardless of all that, after further reading 1mouse3's original command should work fine :)
 
Upvote 0

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones