“Loop File Bash” Kode Jawaban

Loop File Bash

while read p; do
  echo "$p"
done <peptides.txt
Shy Shrike

untuk loop di bash untuk file

#!/bin/bash
FILES=/path/to/*
for f in $FILES
do
  echo "Processing $f file..."
  # take action on each file. $f store current file name
  cat $f
done
Homely Hummingbird

Jawaban yang mirip dengan “Loop File Bash”

Pertanyaan yang mirip dengan “Loop File Bash”

Lebih banyak jawaban terkait untuk “Loop File Bash” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya