Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
関数名を関数に表示する方法は?
#!/bin/sh toto() { echo "$something" } toto
上記のコードが表示されるはずです
toto
busybox の bash Linux を使用しています
そのために使用できます$FUNCNAME。
$FUNCNAME
$ toto() > { > echo "this function name is $FUNCNAME" > } $ toto this function name is toto