如何对同一个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.txt在 后添加echo

相关内容