0
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

バッチファイルで競馬をちょっとだけ便利に

Posted at

最近バッチファイルを職場で書く機会があったので趣味の競馬に利用してみた。

競馬予想する時皆さんどうしてます?

情報が氾濫する現代。PCで色んなサイトを引っ張て来ては、厩舎情報やら調教やら馬柱だとかとにらめっこする人は少なくないはず。ところで・・・

毎回見るサイトを開くのめんどくない?

大体使う競馬サイトは決まっているが、複数ある。
これらをいちいちブックマークから持ってくることはめんどくさい。
ワンクリックで、いっぺんに普段予想に使うサイトを開きたい。

startを使えばOK

メモ帳などのテキストエディタに以下の記述をして、拡張子を.batにして実行するだけ。

@echo off

start https://race.netkeiba.com/?rf=navi
start https://www.keibalab.jp/index.html
start http://www.jra.go.jp/
start https://bfkeiba.com/
start https://www.smartrc.jp/v3/

startの後ろに開きたいURLを書けばOK
自分はネット競馬・競馬ラボ・JRA・血統フェスティバル・スマート出馬表を必ず開いているので、
これらのURLを貼る。

終わりに

出来る人たちにとっちゃたわいもない事かもしれないが、
作業の効率化についてより意識するきっかけとなった。
エンジニアなんだから、積極的にラクしよう。

0
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?