同じ 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
。