0
A
回答
0
您可以使用:
printf "%s\n" "$0" "[email protected]"
打印完整的命令行(在單獨一行每個參數)
如果你想打印在單行然後使用:
printf "%s\n" "$0 $*"
+0
@MalluGolageri:這工作? – anubhava
+0
不,它沒有工作,它仍然給我只有文件名 –
相關問題
- 1. 在shell腳本中提供mysql命令
- 2. shell腳本/命令
- 3. su命令在shell腳本
- 4. 如何在bash腳本中獲取shell命令的中間值
- 5. Shell腳本:在shell腳本中運行「exit」命令後執行命令
- 6. Shell命令來提取XML文件的值到shell腳本
- 7. 如何在shell腳本中獲取sqlite命令的輸出
- 8. 如何使用shell腳本命令在終端中啓動一個shell腳本?
- 9. 如何將命令寫入shell腳本?
- 10. 如何使用shell腳本從命令提示符中提取信息?
- 11. 腳本Karaf shell命令?
- 12. Shell腳本測試命令
- 13. shell腳本剪切命令
- 14. shell腳本命令疑問
- 15. Shell腳本進程命令
- 16. shell腳本grep命令
- 17. Linux shell腳本命令 - gzip
- 18. date命令在bash shell腳本中
- 19. 在shell腳本中運行命令
- 20. 在shell腳本中執行MySQL命令?
- 21. 在shell腳本中執行mailx命令
- 22. 在shell腳本中返回命令
- 23. 在shell腳本中執行linux命令
- 24. 在shell腳本中輸出find命令
- 25. 在shell腳本中以sudo的身份運行一組命令
- 26. Shell命令在shell中工作,但不在shell腳本中
- 27. Shell腳本錯誤|在命令行工作 - 不在腳本中
- 28. 如何將stdin從shell腳本重定向到shell腳本中的命令?
- 29. 提取shell腳本中的文本
- 30. 在shell腳本中,HTML如何在awk命令中工作?
時我打印$ 0我會得到腳本名稱,但不是命令。快速回復將不勝感激。 –