echo와 동일한 기능을 수행하는 외부 명령을 찾고 있습니다.

echo와 동일한 기능을 수행하는 외부 명령을 찾고 있습니다.

echobash에 내장되어 있습니다. 동일한 작업을 수행할 수 있는 외부 명령이 있습니까 echo? (더 할 수 있어)

답변1

가지다 echo:

$ /bin/echo --version
echo (GNU coreutils) 8.25
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Brian Fox and Chet Ramey.

쉘 상태를 변경하지 않는 쉘 내장 명령은 외부 명령으로도 구현되는 경우가 많습니다. [/ test는 잘 알려진 명령이므로 다음과 같습니다 printf.

$ /bin/printf --version
printf (GNU coreutils) 8.25
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.

가능한 경우 busybox다음을 지원할 수도 있습니다 echo.

$ busybox echo --version
--version

관련 정보