v/examples/v_script.vsh

33 lines
760 B
V Shell
Raw Normal View History

2020-10-02 05:18:08 +02:00
#!/usr/local/bin/v run
2020-10-02 05:18:08 +02:00
// The shebang above associates the file to V on Unix-like systems,
// so it can be run just by specifying the path to the file
// once it's made executable using `chmod +x`.
for _ in 0 .. 3 {
2020-10-02 05:18:08 +02:00
println('V script')
}
2020-10-02 05:18:08 +02:00
println('\nMaking dir "v_script_dir".')
mkdir('v_script_dir') ?
2020-10-02 05:18:08 +02:00
println("\nEntering into v_script_dir and listing it's files.")
chdir('v_script_dir') ?
files := ls('.') or { panic(err.msg) }
2020-10-02 05:18:08 +02:00
println(files)
2020-10-02 05:18:08 +02:00
println('\nCreating foo.txt')
create('foo.txt') ?
2020-10-02 05:18:08 +02:00
println('\nFiles:')
again_ls := ls('.') or { panic(err.msg) }
2020-10-02 05:18:08 +02:00
println(again_ls)
2020-10-02 05:18:08 +02:00
println('\nRemoving foo.txt and v_script_dir')
rm('foo.txt') ?
chdir('../') ?
rmdir('v_script_dir') ?
2020-10-02 05:18:08 +02:00
print('\nDoes v_script_dir still exist? ')
println(exists('v_script_dir'))