如何在expect shell中使用变量目录名

时间:2016-11-15 15:46:18

标签: bash macos shell variables expect

我想调用一个变量来查找expect shell脚本中的当前用户ID:

#!/usr/bin/expect -f 
set pass "password"
set username [id -un]
spawn scp -r root@serveraddress:/var/scpserver /Users/$username/Library/Songs/song.mp3`

不幸的是,这不起作用,因为它给了我以下错误

Mac:TestDir Matthew$ ./tester.sh 
invalid command name "id"
while executing "id -un"
invoked from within
"set username [id -un]"
(file "./tester.sh" line 3)`

这背后的想法是我可以在任何计算机上运行此脚本,无论用户的用户名分配给该计算机。

1 个答案:

答案 0 :(得分:1)

id -un是系统命令,而不是Tcl命令。您应该使用exec来执行任何系统命令。

set username [exec id -un]

而不是这种方式,您可以依靠Tcl的内置tcl_platform(user)变量来获取当前用户名。