Yanıtlar:
./Myscript.sh "$(cat text.txt)"
Deneyin,
$ cat comli.txt
date
who
screen
wget
$ cat comli.sh
#!/bin/bash
which $1
$ for i in `cat comli.txt` ; do ./comli.sh $i ; done
böylece teker değerleriyle girebilirsiniz comli.sh
dan comli.txt
.
Proses ikamesi
./Myscript.sh <(cat text.txt)
Bkz. Örneğin https://www.gnu.org/software/bash/manual/bash.html#Process-Substitution
Stdin'i mapfile ile okuyarak konumsal parametreleri yeniden ayarlayabilirsiniz.
#!/bin/bash
[[ -p /dev/stdin ]] && { mapfile -t; set -- "${MAPFILE[@]}"; }
for i in $@; do
echo "$((++n)) $i"
done
("$ @" Alıntı yapıldığında for
döngü satırları oluşturulur).
$ cat test.txt | ./script.sh
1 one
2 two
3 tree
Soruyu doğru olarak cevaplayan tek IMHO olan @ bac0n'yi tamamlamak için, komut dosyası argümanları listenize borulu argümanların önüne geçecek bir kısa astar:
#!/bin/bash
args=$@
[[ -p /dev/stdin ]] && { mapfile -t; set -- "${MAPFILE[@]}"; set -- $@ $args; }
echo $@
Örnek kullanım:
$ ./script.sh arg1 arg2 arg3
> arg1 arg2 arg3
$ echo "piped1 piped2 piped3" | ./script.sh
> piped1 piped2 piped3
$ echo "piped1 piped2 piped3" | ./script.sh arg1 arg2 arg3
> piped1 piped2 piped3 arg1 arg2 arg3