function show_commands() {
var commands = [];
$.each(files, function(i, f) {
- if ("name" in picinfo[f] && picinfo[f].name.length > 0 &&
- !("deleted" in picinfo[f])) {
+ if ("name" in picinfo[f] && picinfo[f].name.length > 0) {
+ var escaped_filename = "'" + shell_escape(picinfo[f].name) + "'";
+ if (picinfo[f].deleted == "deleted") {
+ commands.push("rm " + escaped_filename);
+ return;
+ }
var command = ["pic-mv"];
if ("exposure" in picinfo[f]) {
command.push("-e " + picinfo[f].exposure);
command.push("-r " + picinfo[f].rotate);
}
command.push("'" + shell_escape(f) + "'");
- command.push("'" + shell_escape(picinfo[f].name) + "'");
+ command.push(escaped_filename);
commands.push(command.join(" "));
}
});