我正在创建一个 bash 脚本,它将在后台运行一个进程,该进程创建一个套接字文件。然后需要对套接字文件进行chmod
'd. 我遇到的问题是在尝试文件之前没有创建套接字chmod
文件。
示例来源:
#!/bin/bash
# first create folder that will hold socket file
mkdir /tmp/myproc
# now run process in background that generates the socket file
node ../main.js &
# finally chmod the thing
chmod /tmp/myproc/*.sock
如何延迟执行chmod
直到创建套接字文件之后?