감동, 마음이 움직이는 것

[gnuplot] for loop with filename list [file in list] 본문

Tips (Utility, Computer Language, and etc.)

[gnuplot] for loop with filename list [file in list]

Struggler J. 2018. 3. 27. 02:01

list = system("cat list.d")  #after making the file for data files, you can just use this

or 

list = system("ls | grep arguement") # "ls" comment with "grep" showing the file names which include argument in the file name


do for[file in list] {

plot list u 1:2 w l t ''

}