我已经搜索了堆栈溢出,但没有什么适合我的问题。 我想做什么:
我有一个目录:
~/data/project/bin
在这个目录中是我的脚本firstScript.sh。我希望它做3件事:
要实现第一步,我找到this question并尝试了这个(使用ls -l作为命令查看是否找到了正确的目录):
#!/bin/bash
#step 1 get into the directory
#setp 2 loop through all files
#step 3 add the command
cd /mytest ls -l
#also tried:
# cd ~/mytest ls -l
什么都没发生,所以我在控制台/终端中自己尝试了路径和命令,这是正确的路径。任何想法这有什么问题?也尝试使用./relativ/path,但这也没有用。
答案 0 :(得分:1)
cd ~/mytest
cat
cat *
cd ~/mytest; cat *