Quick use of scripting languages?

I feel that there are many quick uses for scripting languages ​​that you can only think of if you always open the shell. I leave the terminal tab open with python running and solve a lot of problems with a few lines of code printed on my head. What are some of your less obvious uses for the scripting language of your choice.

+3
source share
5 answers

More recently, in my central Windows world, I used it to rename a large number of files, search / filter log files for a specific case, perform network diagnostics and many small things that I can’t think of now that some of my colleagues who do not have a UNIX background, never would have thought.

+2
source

I just used a Lua script in SciTE to select the selected SVG path and perform some operations on it (find min values ​​and translate to 0, scale, round values ​​to avoid tons of decimal digits). It is just convenient.

+1
source
  • ;
  • ;
  • (, );
  • .
0

- Wikibooks .

It mainly discusses the use of Unix commands rather than scripting languages, but the principle is the same ... the shell is always open.

0
source

Use BeautifulSoup to clear the HTML.

0
source

Source: https://habr.com/ru/post/1717438/


All Articles