View Single Post
Old 12-18-2022, 09:57 AM   #74
ottischwenk
Wizard
ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.
 
ottischwenk's Avatar
 
Posts: 2,871
Karma: 3933245
Join Date: Sep 2012
Location: Salzburg AT
Device: Boox 4/14, Like-/Meebook 1/8, Tolino 1/10, Kobo 0/5, Kindle 0/3
Code:
Microsoft Windows [Version 10.0.22621.963]
(c) Microsoft Corporation. Alle Rechte vorbehalten.

D:\_Reader-Smartphone\ADB>adb push alpha.sh /data/local/tmp
alpha.sh: 1 file pushed. 0.0 MB/s (173 bytes in 0.044s)

D:\_Reader-Smartphone\ADB>adb shell
BOOX:/ $ cd /sdcard
BOOX:/sdcard $ cd Test
BOOX:/sdcard/Test $ chmod 755 /data/local/tmp/alpha.sh
BOOX:/sdcard/Test $ data/local/tmp/alpha.sh
/system/bin/sh: data/local/tmp/alpha.sh: inaccessible or not found
127|BOOX:/sdcard/Test $
and now with
Code:
#!/bin/sh

for a in a b c d e f g h i j k l m n o p q r s t u v w x y z; do
i=0; while [ $((i)) -lt 1000 ]; do touch $a$i; i=$(($i+1)); done
time ls -l | wc
done
Code:
Microsoft Windows [Version 10.0.22621.963]
(c) Microsoft Corporation. Alle Rechte vorbehalten.

D:\_Reader-Smartphone\ADB>adb push alpha.sh /data/local/tmp
alpha.sh: 1 file pushed. 0.0 MB/s (166 bytes in 0.029s)

D:\_Reader-Smartphone\ADB>adb shell
BOOX:/ $ cd /sdcard/Test
BOOX:/sdcard/Test $ chmod 755 /data/local/tmp/alpha.sh
BOOX:/sdcard/Test $ /data/local/tmp/alpha.sh
/system/bin/sh: /data/local/tmp/alpha.sh: No such file or directory
1|BOOX:/sdcard/Test $
D:\_Reader-Smartphone\ADB>
inaccessible or not found vs No such file or directory

Last edited by ottischwenk; 12-18-2022 at 10:16 AM.
ottischwenk is online now   Reply With Quote