Tryag File Manager
Home
-
Turbo Force
Current Path :
/
proc
/
self
/
root
/
usr
/
share
/
doc
/
bash-3.2
/
functions
/
Upload File :
New :
File
Dir
//proc/self/root/usr/share/doc/bash-3.2/functions/shcat2
shcat() { while read -r line do echo "$line" done } shcat2() { while [ $# -ge 1 ]; do case "$1" in -) shcat ;; *) shcat < "$1" ;; esac shift done exit 0 }