如何對同一個URL進行編號?

如何對同一個URL進行編號?

我想知道是否有一種方法或工具可以創建相同的 URL,但按數字編號,例如我想對相同的 URL 進行編號,直到到達2866.ts:

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.txtecho.

相關內容