Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 25 of 25) sorted by relevance

/busybox-1.35.0/examples/var_service/getty_tty1/
Dlogin.sh7 tail="${ttyname:8}"
9 test -c "/dev/vcs$tail" && chown "$LOGIN_UID:$LOGIN_GID" "/dev/vcs$tail"
10 test -c "/dev/vcsa$tail" && chown "$LOGIN_UID:$LOGIN_GID" "/dev/vcsa$tail"
/busybox-1.35.0/scripts/
Dgcc-version.sh11 MAJ_MIN=$(echo __GNUC__ __GNUC_MINOR__ | $compiler -E -xc - | tr -d '\r' | tail -n 1)
Dfind_stray_empty_lines12 tail -n1 $file | while read lastline
Drandomtest.loop50 tail -n10 -- "$dir/testsuite/runtest.log"
Dgenerate_BUFSIZ.sh122 oldcfg=`tail -n2 -- "$common_bufsiz_h.1k.OK"`
/busybox-1.35.0/examples/var_service/
Dsview19 exec tail -n $((h-1)) -F current 2>&1
/busybox-1.35.0/runit/
Dchpst.c213 char *tail; in edir() local
247 tail = strchr(buf, '\n'); in edir()
250 *tail = '\0'; in edir()
251 tail--; in edir()
252 if (tail < buf || !isspace(*tail)) in edir()
/busybox-1.35.0/sysklogd/
Dlogread.c58 int32_t tail; // end of message list member
136 cur = shbuf->tail; in logread_main()
154 shbuf_tail = shbuf->tail; in logread_main()
Dsyslogd.c206 int32_t tail; /* end of message list */ member
624 old_tail = G.shbuf->tail; in log_to_shmem()
629 G.shbuf->tail = new_tail; in log_to_shmem()
637 G.shbuf->tail = 0; in log_to_shmem()
644 printf("tail:%d\n", G.shbuf->tail); in log_to_shmem()
/busybox-1.35.0/testsuite/tail/
Dtail-n-works3 busybox tail -n 2 input > logfile.bb
Dtail-works5 busybox tail -2 input > logfile.bb
/busybox-1.35.0/examples/var_service/dhcp_if_pinger/
Drun20 tail -999 "$0.log" >"$0.log.new"
/busybox-1.35.0/libbb/
Duuencode.c167 goto tail; in decode_base32()
177 tail: in decode_base32()
/busybox-1.35.0/
Dsize_single_applets.sh25 text=`size "$b" | tail -1 | sed -e's/\t/ /g' -e's/^ *//' -e's/ .*//'`
DTODO_unicode26 head, tail
Dmake_single_applets.sh81 tail -n1 busybox_make_${app}.log
DAUTHORS111 mv, realpath, rm, sort, tail, touch, uname, watch, arith, human_readable,
DNOFORK_NOEXEC.lst367 tail - runner
DConfig.in59 will be supported in head, tail, and fold. (Note: should
/busybox-1.35.0/testsuite/
Dmount.testroot26 dochroot bash rm ls ln cat ps mknod mkdir dd grep cmp diff tail \
/busybox-1.35.0/editors/
Dsed1line.txt151 # print the last 10 lines of a file (emulates "tail")
154 # print the last 2 lines of a file (emulates "tail -2")
157 # print the last line of a file (emulates "tail -1")
Dawk.c2378 goto tail; /* print remaining string, exit loop */ in awk_printf()
2421 tail: in awk_printf()
/busybox-1.35.0/docs/
Dbusybox_footer.pod174 mv, realpath, rm, sort, tail, touch, uname, watch, arith, human_readable,
Dposix_conformance.txt608 tail POSIX options
613 tail Busybox specific options:
/busybox-1.35.0/shell/
Dash.c7020 const char *tail; in varunset() local
7022 tail = nullstr; in varunset()
7027 tail = " or null"; in varunset()
7032 ash_msg_and_raise_error("%.*s: %s%s", (int)(end - var - 1), var, msg, tail); in varunset()