내 입력 파일은 다음과 같습니다
Employee
e_id e_name
100 abc
101 xyz
102 pqr
Salary
e_id e_salary
100 12345
101 67890
Dependents
e_id depp1 depp2
100 qwer tyui
102 asdf ghjkl
다음과 같이 한 줄씩 출력하고 싶습니다.
E100abc
E101xyz
E102pqr
S10012345
S10167890
D100qwertyui
D102asdfghjkl
출력에는 이 데이터 행을 얻은 데이터 그룹을 나타내는 시작 문자가 있어야 합니다.
답변1
for file in Employee Salary Dependents; do
prefix="${file:0:1}" # First character of the filename
sed "1,2d;s/ //;s/^/$prefix/" "$file"
done