동일한 URL을 생성하지만 숫자로 번호를 매기는 방법이나 도구가 있는지 알고 싶습니다. 예를 들어 2866
.ts에 도달할 때까지 동일한 URL에 번호를 지정하고 싶습니다.
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/884.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/885.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/886.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/887.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/888.ts
...
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/2866.ts
이러한 URL이 모두 포함된 .txt를 생성하려면
하나씩 이름을 바꾸지 않고 이 작업을 수행할 수 있는 방법이 있습니까?
답변1
간단한 Bash 스크립트가 이를 수행합니다.
for i in {884..2866}; do echo https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/$i.ts; done
산출:
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/2859.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/2860.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/2861.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/2862.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/2863.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/2864.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/2865.ts
https://vod-secure.twitch.tv/4eecc1c67258e07bc38b_alanzoka_28367710912_841652096/chunked/2866.ts
>> filename.txt
이것을 파일 로 저장하려면 echo
.