是否可以在独立屏幕中调用脚本中其他位置定义的一堆函数?例如:
#!/bin/bash
Method1() { ... }
Method2() { ... }
Method3() { ... }
Method4() { ... }
cd "$DST_DIR"
screen -dm -S "$(date +%s)_PROCESS" -L {
Method1
Method2
Method3
Method4
}
是否可以在独立屏幕中调用脚本中其他位置定义的一堆函数?例如:
#!/bin/bash
Method1() { ... }
Method2() { ... }
Method3() { ... }
Method4() { ... }
cd "$DST_DIR"
screen -dm -S "$(date +%s)_PROCESS" -L {
Method1
Method2
Method3
Method4
}